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.

15 lines (14 loc) 684 B
import { Canvas, Path } from '@nativescript-community/ui-canvas'; import { RadarChart } from '../charts/RadarChart'; import { YAxis } from '../components/YAxis'; import { ViewPortHandler } from '../utils/ViewPortHandler'; import { YAxisRenderer } from './YAxisRenderer'; export declare class YAxisRendererRadarChart extends YAxisRenderer { private mChart; constructor(viewPortHandler: ViewPortHandler, yAxis: YAxis, chart: RadarChart); protected computeAxisValues(min: number, max: number): void; renderAxisLabels(c: Canvas): void; private mRenderLimitLinesPathBuffer; protected get renderLimitLinesPathBuffer(): Path; renderLimitLines(c: Canvas): void; }