Hi Support.
Can I help me please.I can not set the Y axis to the left without the 1 value 1 axis.
and I want to set the maximum and minimum values for each axes.
<md-input-container style="position: absolute; left: 0px; top: 0px; width: 150px;">
<label>Maximum value</label>
<input type="number" ng-model="max">
</md-input-container>
<md-input-container style="position: absolute; left: 155px; top: 0px; width: 150px;">
<label>Minimum value</label>
<input type="number" ng-model="min">
</md-input-container>
<div layout="row">
<div ng-init="myPreset='DAY_SO_FAR'"></div>
<div ng-init="myInterval='1 minutes'"></div>
<ma-date-range-picker from="from" to="to" style="display: none" update-interval="{{myInterval}}" preset="{{myPreset}}"></ma-date-range-picker>
<md-input-container flex="" style="position: absolute; left: 320px; top: 0px; width: 240px; height: 100px;">
<label>From date</label>
<font size="3"><ma-date-picker ng-model="from" mode="both" format="DD-MM-YYYY"></ma-date-picker></font>
</md-input-container>
<md-input-container flex="" style="position: absolute; left: 565px; top: 0px; width: 240px; height: 100px;">
<label>To date</label>
<font size="3"><ma-date-picker ng-model="to" mode="both" format="DD-MM-YYYY"></ma-date-picker></font>
</md-input-container>
</div>
<div layout="row" ng-init="points=[]"><font size="3">
<md-input-container style="position: absolute; left: 810px; top: 0px; width: 240px; height: 100px;">
<label>Search by Name</label>
<ma-data-source-list ng-model="myDataSource"></ma-data-source-list>
</md-input-container></font>
<md-input-container style="position: absolute; left: 1060px; top: 0px; width: 240px; height: 100px;">
<label>Add a point</label>
<ma-point-list limit="2000" ng-model="point" init-point="false" ng-change="point &&points.push(point); point=null" query="{deviceName:nameFilter}"></ma-point-list>
</md-input-container>
</div>
<md-whiteframe id="inv11" style="position: absolute; left: 320px; top: 70px; border-width: thin; border-style: solid; width: 980px; height: 0px; border-color: rgb(181, 181, 181); background-color: rgb(255, 255, 255);">
<md-chips ng-model="points" name="name" readonly="true" md-max-chips="10">
<md-chip-template ng-click="points.splice($$replacedScope.$index,1)">
<strong>{{$chip.name}}</strong>
<em>({{$chip.deviceName}})</em>
<md-icon>close</md-icon>
</md-chip-template>
</md-chips>
<div style="position: absolute; left: 0px; top: 50px; height: 0px; width: 100%;">
<font size="3">
<ma-point-query query="{$and: true, deviceName:points, name:checkboxModel.value4}" limit="0" points="points"></ma-point-query>
<ma-point-values points="points" values="combined" from="from" to="to"></ma-point-values>
<ma-serial-chart style="height: 280px; width: 100%" stack-type="regular" values="combined" series-1-axis="left" series-1-axis="left-2" points="points" legend="true" options="{synchronizeGrid: false, valueAxes:[{ minimum:min, maximum:max}]}"></ma-serial-chart></font>
</div>
Thank you for support.