@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.
20 lines • 932 B
JavaScript
import { Color } from '@nativescript/core';
import { LineRadarDataSet } from './LineRadarDataSet';
import { ColorTemplate } from '../utils/ColorTemplate';
export class RadarDataSet extends LineRadarDataSet {
constructor(yVals, label, yProperty) {
super(yVals, label, null, yProperty);
/// flag indicating whether highlight circle should be drawn or not
this.drawHighlightCircleEnabled = false;
this.highlightCircleFillColor = new Color('white');
/// The stroke color for highlight circle.
/// If Utils.COLOR_NONE, the color of the dataset is taken.
this.highlightCircleStrokeColor = ColorTemplate.COLOR_NONE;
this.highlightCircleStrokeAlpha = 0.3 * 255;
this.highlightCircleInnerRadius = 3.0;
this.highlightCircleOuterRadius = 4.0;
this.highlightCircleStrokeWidth = 2.0;
this.init();
}
}
//# sourceMappingURL=RadarDataSet.js.map