@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.
29 lines (28 loc) • 860 B
JavaScript
import { LineScatterCandleRadarDataSet } from './LineScatterCandleRadarDataSet';
/**
* Base dataset for line and radar DataSets.
*
*/
export class LineRadarDataSet extends LineScatterCandleRadarDataSet {
constructor() {
super(...arguments);
/**
* the color that is used for filling the line surface
*/
this.fillColor = '#8CEAFF'; // rgb(140,234,255)
/**
* transparency used for filling line surface
*/
this.fillAlpha = 85;
/**
* the width of the drawn data lines
* thinner line === better performance, thicker line === worse performance
*/
this.lineWidth = 1.5;
/**
* if true, the data will also be drawn filled
*/
this.drawFilledEnabled = false;
}
}
//# sourceMappingURL=LineRadarDataSet.js.map