ixfx
    Preparing search index...

    Type Alias CartesianPlotOptions

    type CartesianPlotOptions = {
        axisStyle: LineStyle;
        clear: "region" | "canvas";
        connectStyle: "" | "line";
        grid: Partial<GridStyle>;
        onInvalidated: () => void;
        range: "auto" | { max: Point; min: Point };
        show: Partial<ShowOptions>;
        textStyle: TextStyle;
        valueStyle: "dot" | "";
        visualPadding: number;
        whiskerLength: number;
    }
    Index

    Properties

    axisStyle: LineStyle

    Drawing settings for axis (if 'showAxes' is enabled)

    clear: "region" | "canvas"
    connectStyle: "" | "line"

    How values are connected. Default: '' (no connecting) Values are connected in order of dataset.

    grid: Partial<GridStyle>

    Gridline setting

    onInvalidated: () => void
    range: "auto" | { max: Point; min: Point }

    If 'auto' (default), range of plot is based on data. Otherwise specify the range, eg: { min: {x:-1,y:-1}, {x:1,y:1}}

    show: Partial<ShowOptions>
    textStyle: TextStyle
    valueStyle: "dot" | ""

    How values are drawn. Default: 'dot'

    visualPadding: number

    Margin around whole plot area. Use to avoid dots being cut off by edge of canvas

    whiskerLength: number