Documentation / @ripl/charts / TrendChartAreaSeriesOptions
Interface: TrendChartAreaSeriesOptions<TData> ​
Defined in: charts/src/charts/trend.ts:130
Series options for an area-type series within a trend chart.
Extends ​
TrendChartBaseSeriesOptions<TData>
Type Parameters ​
| Type Parameter |
|---|
TData |
Properties ​
| Property | Type | Description | Overrides | Inherited from | Defined in |
|---|---|---|---|---|---|
color? | string | Explicit series color; falls back to the chart's generated palette when omitted. | - | TrendChartBaseSeriesOptions.color | charts/src/charts/trend.ts:106 |
fillOpacity? | number | Fill opacity of the area band. Defaults to 0.3. | - | - | charts/src/charts/trend.ts:140 |
id | string | Unique identifier for the series, used for color assignment, legend, and data joins. | - | TrendChartBaseSeriesOptions.id | charts/src/charts/trend.ts:102 |
label | string | ((item) => string) | Series name shown in the legend and tooltips (or a per-item function). | - | TrendChartBaseSeriesOptions.label | charts/src/charts/trend.ts:110 |
lineStyle? | LineStyleInput<TData> | Line dash style: 'solid' (default), 'dashed', 'dotted', a custom dash array, or key-anchored spans each with their own style. | - | - | charts/src/charts/trend.ts:138 |
lineType? | PolylineRenderer | Renderer used to draw the area top edge (e.g. straight or curved); defaults to straight segments. | - | - | charts/src/charts/trend.ts:134 |
lineWidth? | number | Width in pixels of the series line. | - | - | charts/src/charts/trend.ts:136 |
markers? | boolean | Show point markers at each data value. Defaults to true. | - | - | charts/src/charts/trend.ts:142 |
type | "area" | Discriminant marking this as an area series. | TrendChartBaseSeriesOptions.type | - | charts/src/charts/trend.ts:132 |
value | number | NumericAccessor<TData> | Accessor for the series' value at each data item, or a constant applied to every item. | - | TrendChartBaseSeriesOptions.value | charts/src/charts/trend.ts:108 |