Skip to content

Commit 7d0adc5

Browse files
deepentropyclaude
andcommitted
Add style field to PlotConfig interface
Closes #82 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4692e78 commit 7d0adc5

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/runtime/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ export interface PlotConfig {
7878
color: string;
7979
/** Line width in pixels */
8080
lineWidth?: number;
81+
/** Plot style */
82+
style?: 'line' | 'stepline' | 'histogram' | 'area' | 'circles' | 'columns' | 'cross' | 'areabr' | 'steplinebr' | 'linebr';
8183
/** Whether the plot is visible (can be boolean or expression string for dynamic visibility) */
8284
visible?: boolean | string;
8385
/** Display mode: 'all', 'none', 'data_window', 'status_line', 'pane' */

0 commit comments

Comments
 (0)