Optional automaticOptional index to use for automatic coloring of series.
Normally series are automatically colored differently when you create several series in the same chart. However, in some cases you might want to alter this order of automatic coloring, or use the automatic color palettes on series that belong to different charts.
In these scenarios you can use automaticColorIndex to tell each series individually what is its place in the default color palette.
// Create series using the first color in default Theme palette.
const series1 = chart.addLineSeries({ automaticColorIndex: 0 })
// Create another series colored with the 3rd color.
const series2 = chart.addLineSeries({ automaticColorIndex: 2 })
Optional individualFlag that can be used to enable data points value property on top of x, y and z.
By default this is disabled.
This feature can be used to color data points individually by dynamic color look up.
If required, this must be enabled when the series is created.
// Example, enable PointSeries3D data `value` property.
const pointSeries3D = chart3D.addPointSeries({
individualLookupValuesEnabled: true
})
// 'value' property can now be included in data points.
pointSeries3D.add([
{ x: 0, y: 0, z: 0, value: 5 }
])
individualLookupValuesEnabled must be enabled in order to style PointSeries3D with PalettedFill of lookUpProperty: 'value'.
See setPointStyle for more detailed information.
Performance side-effects from enabling:
Optional legendLegend options for the series. If null, no legend entry will be created for the series.
Interface that can be used to specify readonly parameters when creating a LineSeries3D.
LineSeries3Dis created with addLineSeries method.