openui5-financial-charts
Version:
OpenUI5 Financial Charts based on d3.js
24 lines (19 loc) • 477 B
JavaScript
sap.ui.define(["./SeriesItem", "./library"], function(SeriesItem) {
"use strict";
return SeriesItem.extend("openui5.financial.chart.LineChartItem", {
metadata: {
properties: {
value: "float"
}
},
setValue: function(fValue) {
this.setProperty("value", fValue, true);
},
_getMin: function() {
return this.getValue();
},
_getMax: function() {
return this.getValue();
}
});
});