Documentation / @ripl/charts / TrendChartAreaSeriesOptions
Interface: TrendChartAreaSeriesOptions<TData>
Defined in: charts/src/charts/trend.ts:121
Series options for area-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 |
filled | boolean | Whether the region beneath the line is filled. | - | - | charts/src/charts/trend.ts:125 |
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 |
type | "area" | Discriminant marking this as an area series. | BaseTrendChartSeriesOptions.type | - | charts/src/charts/trend.ts:123 |
value | NumericAccessor<TData> | Accessor for each item's numeric value. | - | BaseTrendChartSeriesOptions.value | charts/src/charts/trend.ts:109 |