We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4692e78 commit 7d0adc5Copy full SHA for 7d0adc5
1 file changed
src/runtime/types.ts
@@ -78,6 +78,8 @@ export interface PlotConfig {
78
color: string;
79
/** Line width in pixels */
80
lineWidth?: number;
81
+ /** Plot style */
82
+ style?: 'line' | 'stepline' | 'histogram' | 'area' | 'circles' | 'columns' | 'cross' | 'areabr' | 'steplinebr' | 'linebr';
83
/** Whether the plot is visible (can be boolean or expression string for dynamic visibility) */
84
visible?: boolean | string;
85
/** Display mode: 'all', 'none', 'data_window', 'status_line', 'pane' */
0 commit comments