Documentation / @ripl/charts / RealtimeChartSeriesOptions
Interface: RealtimeChartSeriesOptions ​
Defined in: charts/src/charts/realtime.ts:82
Configuration for an individual realtime chart series.
Properties ​
| Property | Type | Description | Defined in |
|---|---|---|---|
color? | string | Optional color override for the series (otherwise a palette color is generated). | charts/src/charts/realtime.ts:86 |
fillOpacity? | number | Opacity of the area fill when showArea is enabled. Defaults to 0.2. | charts/src/charts/realtime.ts:96 |
id | string | Unique identifier for the series, used as the key when pushing new values. | charts/src/charts/realtime.ts:84 |
label? | string | Display label for the series (shown in the legend). Defaults to the series id. | charts/src/charts/realtime.ts:88 |
lineType? | PolylineRenderer | Renderer controlling the line's shape (e.g. straight or curved). | charts/src/charts/realtime.ts:90 |
lineWidth? | number | Width of the series line in pixels. Defaults to 2. | charts/src/charts/realtime.ts:92 |
showArea? | boolean | Fill the area beneath the line. Defaults to true. | charts/src/charts/realtime.ts:94 |