UNPKG

@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) 658 B
import { Canvas } from '@nativescript-community/ui-canvas'; import { RadarChart } from '../charts/RadarChart'; import { XAxis } from '../components/XAxis'; import { ViewPortHandler } from '../utils/ViewPortHandler'; import { XAxisRenderer } from './XAxisRenderer'; export declare class XAxisRendererRadarChart extends XAxisRenderer { private mChart; mForceLongestLabelComputation: boolean; constructor(viewPortHandler: ViewPortHandler, xAxis: XAxis, chart: RadarChart); renderAxisLabels(c: Canvas): void; /** * XAxis LimitLines on RadarChart not yet supported. * * @param c */ renderLimitLines(c: Canvas): void; }