@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.
13 lines (11 loc) • 346 B
TypeScript
import { Entry } from '../../data/Entry';
import { IDataSet } from './IDataSet';
/**
* Created by philipp on 21/10/15.
*/
export interface IBarLineScatterCandleBubbleDataSet<T extends Entry> extends IDataSet<T> {
/**
* Returns the color that is used for drawing the highlight indicators.
*/
highlightColor: string | Color;
}