Documentation / @ripl/charts / TrendChartLineSeriesOptions
Interface: TrendChartLineSeriesOptions<TData>
Defined in: charts/src/charts/trend.ts:129
Series options for line-type series within a trend chart.
Extends
BaseTrendChartSeriesOptions<TData>
Type Parameters
| Type Parameter |
|---|
TData |
Properties
| Property | Type | Description | Overrides | Inherited from | Defined in |
|---|---|---|---|---|---|
color? | string | Optional colour override for the series (otherwise a palette colour is generated). | - | BaseTrendChartSeriesOptions.color | charts/src/charts/trend.ts:107 |
id | string | Unique identifier for the series. | - | BaseTrendChartSeriesOptions.id | charts/src/charts/trend.ts:103 |
label | string | ((item) => string) | Display label for the series, or an accessor deriving a per-item label. | - | BaseTrendChartSeriesOptions.label | charts/src/charts/trend.ts:111 |
lineType? | PolylineRenderer | Renderer controlling the line's shape (e.g. straight or curved). | - | - | charts/src/charts/trend.ts:133 |
type | "line" | Discriminant marking this as a line series. | BaseTrendChartSeriesOptions.type | - | charts/src/charts/trend.ts:131 |
value | NumericAccessor<TData> | Accessor for each item's numeric value. | - | BaseTrendChartSeriesOptions.value | charts/src/charts/trend.ts:109 |