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§
Source§readonly chart Options?: {
backgroundColor?: string;
devicePixelRatio?: number;
format?: "pdf" | "png" | "svg" | "webp";
height?: number;
horizontal?: boolean;
width?: number;
}
readonly chart Options?: {
backgroundColor?: string;
devicePixelRatio?: number;
format?: "pdf" | "png" | "svg" | "webp";
height?: number;
horizontal?: boolean;
width?: number;
}
Source§readonly chart Type?: "line" | "bar" | "doughnut" | "pie" | "polarArea"
readonly chart Type?: "line" | "bar" | "doughnut" | "pie" | "polarArea"
The type of chart to create Default: "bar"
Source§readonly dataset Options?: {
backgroundColor?: string;
borderColor?: string;
fill?: boolean;
label?: string;
pointStyle?:
| "circle"
| "line"
| "star"
| "cross"
| "crossRot"
| "dash"
| "rect"
| "rectRot"
| "rectRounded"
| "triangle";
}
readonly dataset Options?: {
backgroundColor?: string;
borderColor?: string;
fill?: boolean;
label?: string;
pointStyle?:
| "circle"
| "line"
| "star"
| "cross"
| "crossRot"
| "dash"
| "rect"
| "rectRot"
| "rectRounded"
| "triangle";
}
Default: {}
Default: {}