fcharts-js - v0.3.0
    Preparing search index...

    Interface FChartProps

    interface FChartProps {
        annotations?: AnnotationSpec[];
        className?: string;
        data?: FChartData;
        options?: FChartOptions;
        series: SeriesConfig[];
        style?: CSSProperties;
    }
    Index

    Properties

    annotations?: AnnotationSpec[]

    Event markers on the series. Changing its identity re-applies them.

    className?: string
    data?: FChartData

    Columnar dataset. Changing its identity replaces the data (and resets the view).

    options?: FChartOptions

    Chart options (accessibility, formatting, ticks, …).

    series: SeriesConfig[]

    Series definitions (same shape as the imperative API).

    style?: CSSProperties

    The container must have a height for the chart to size itself (e.g. { height: 320 }).