@nativescript-community/ui-chart
Version:
A powerful chart / graph plugin, supporting line, bar, pie, radar, bubble, and candlestick charts as well as scaling, panning and animations.
18 lines (17 loc) • 565 B
JavaScript
import { DataSet } from './DataSet';
/**
* Baseclass of all DataSets for Bar-, Line-, Scatter- and CandleStickChart.
*
*/
export class BarLineScatterCandleBubbleDataSet extends DataSet {
constructor() {
super(...arguments);
/**
* Sets the color that is used for drawing the highlight indicators. Dont
* forget to resolve the color using getResources().getColor(...) or
* new Color(255, ...).
*/
this.highlightColor = '#FFBB73';
}
}
//# sourceMappingURL=BarLineScatterCandleBubbleDataSet.js.map