Documentation / @ripl/charts / BarChartSeriesOptions
Interface: BarChartSeriesOptions<TData>
Defined in: charts/src/charts/bar.ts:89
Configuration for an individual bar chart series.
Type Parameters
| Type Parameter |
|---|
TData |
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
color? | string | Explicit series colour; falls back to the chart's generated palette when omitted. | charts/src/charts/bar.ts:93 |
id | string | Unique identifier for the series, used for colour assignment, legend, and data joins. | charts/src/charts/bar.ts:91 |
label | string | Human-readable series name shown in the legend and tooltips. | charts/src/charts/bar.ts:97 |
value | number | NumericAccessor<TData> | Accessor for the series' value at each data item, or a constant applied to every item. | charts/src/charts/bar.ts:95 |