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 chart Options?: { ... }§
readonly chart Type?: "line" | "bar" | "doughnut" | "pie" | "polarArea"The type of chart to create Default: "bar"
readonly data?: stringData to use for the dataset, documentation and examples here
readonly dataset Options?: { ... }Default: {}
readonly labels Array?: stringThe array of labels to be used in the chart
readonly labels Mode?: "manually" | "array"Default: "manually"
readonly labels Ui?: { ... }Labels to use in the chart Default: {} Type options: {"multipleValues":true,"sortable":true}
readonly output?: stringThe binary data will be displayed in the Output panel on the right, under the Binary tab Default: "data"
Default: {}