@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.
22 lines (18 loc) • 757 B
TypeScript
import { Color } from '@nativescript/core';
import { ILineRadarDataSet } from './ILineRadarDataSet';
import { RadarEntry } from '../../data/RadarEntry';
/**
* Created by Philipp Jahoda on 03/11/15.
*/
export interface IRadarDataSet extends ILineRadarDataSet<RadarEntry> {
/// flag indicating whether highlight circle should be drawn or not
drawHighlightCircleEnabled: boolean;
highlightCircleFillColor: string | Color;
/// The stroke color for highlight circle.
/// If Utils.COLOR_NONE, the color of the dataset is taken.
highlightCircleStrokeColor: string | Color;
highlightCircleStrokeAlpha: number;
highlightCircleInnerRadius: number;
highlightCircleOuterRadius: number;
highlightCircleStrokeWidth: number;
}