Interface QuickChartNodeParameters

Source
interface QuickChartNodeParameters {
    chartOptions?: {
        backgroundColor?: string;
        devicePixelRatio?: number;
        format?: "pdf" | "png" | "svg" | "webp";
        height?: number;
        horizontal?: boolean;
        width?: number;
    };
    chartType?: | "line"
    | "bar"
    | "doughnut"
    | "pie"
    | "polarArea";
    data?: string;
    datasetOptions?: {
        backgroundColor?: string;
        borderColor?: string;
        fill?: boolean;
        label?: string;
        pointStyle?: | "circle"
        | "line"
        | "star"
        | "cross"
        | "crossRot"
        | "dash"
        | "rect"
        | "rectRot"
        | "rectRounded"
        | "triangle";
    };
    labelsArray?: string;
    labelsMode?: "manually"
    | "array";
    labelsUi?: { labelsValues: { label?: string }[] };
    output?: string;
}

Properties§

§readonly chartOptions?: { ... }

Default: {}

§readonly chartType?: "line" | "bar" | "doughnut" | "pie" | "polarArea"

The type of chart to create Default: "bar"

§readonly data?: string

Data to use for the dataset, documentation and examples here

§readonly datasetOptions?: { ... }

Default: {}

§readonly labelsArray?: string

The array of labels to be used in the chart

§readonly labelsMode?: "manually" | "array"

Default: "manually"

§readonly labelsUi?: { ... }

Labels to use in the chart Default: {} Type options: {"multipleValues":true,"sortable":true}

§readonly output?: string

The binary data will be displayed in the Output panel on the right, under the Binary tab Default: "data"