UNPKG

openui5-financial-charts

Version:
24 lines (19 loc) 477 B
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(); } }); });