Nativescript plugin for Charts
    Preparing search index...

    Created by philipp on 11/06/16.

    interface CombinedDataProvider {
        barData: BarData;
        bubbleData: BubbleData;
        candleData: CandleData;
        centerOffsets: MPPointF;
        centerOfView: MPPointF;
        combinedData: CombinedData;
        contentRect: Rect;
        data: BarLineScatterCandleBubbleData<any, any>;
        defaultValueFormatter: ValueFormatter;
        drawBarShadowEnabled: boolean;
        drawValueAboveBarEnabled: boolean;
        highestVisibleX: any;
        highlightFullBarEnabled: boolean;
        highlightsFilterByAxis: boolean;
        lineData: LineData;
        lowestVisibleX: any;
        maxHighlightDistance: number;
        maxVisibleValueCount: number;
        scatterData: ScatterData;
        transformer: Transformer;
        xChartMax: number;
        xChartMin: number;
        xRange: number;
        yChartMax: number;
        yChartMin: number;
        getAxis(dependency: AxisDependency): any;
        getMeasuredHeight(): any;
        getMeasuredWidth(): any;
        getPixelForEntry(set: IDataSet<Entry>, entry: Entry, index: any): MPPointF;
        getTransformer(axis?: AxisDependency): Transformer;
        isInverted(axis: AxisDependency): any;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    barData: BarData
    bubbleData: BubbleData
    candleData: CandleData
    centerOffsets: MPPointF
    centerOfView: MPPointF
    combinedData: CombinedData
    contentRect: Rect
    defaultValueFormatter: ValueFormatter
    drawBarShadowEnabled: boolean
    drawValueAboveBarEnabled: boolean
    highestVisibleX: any
    highlightFullBarEnabled: boolean
    highlightsFilterByAxis: boolean

    Wether to filter highlights by axis. Default is true

    lineData: LineData
    lowestVisibleX: any
    maxHighlightDistance: number

    Returns the maximum distance in scren dp a touch can be away from an entry to cause it to get highlighted.

    maxVisibleValueCount: number
    scatterData: ScatterData
    transformer: Transformer
    xChartMax: number

    Returns the maximum x value of the chart, regardless of zoom or translation.

    xChartMin: number

    Returns the minimum x value of the chart, regardless of zoom or translation.

    xRange: number
    yChartMax: number

    Returns the maximum y value of the chart, regardless of zoom or translation.

    yChartMin: number

    Returns the minimum y value of the chart, regardless of zoom or translation.

    Methods

    • Parameters

      • set: IDataSet<Entry>
      • entry: Entry
      • index: any

      Returns MPPointF