Class JsSeriesDescriptor
java.lang.Object
io.deephaven.web.client.api.widget.plot.JsSeriesDescriptor
@JsType(name="SeriesDescriptor",
namespace="dh.plot")
public class JsSeriesDescriptor
extends Object
A descriptor used to define a chart series when creating a figure from JS.
-
Field Summary
FieldsModifier and TypeFieldDescriptionelemental2.core.JsArray<JsSourceDescriptor> The data sources for this series.@JsNullable BooleanWhether the series uses gradient rendering.@JsNullable StringThe line color.@JsNullable BooleanWhether lines are visible.@JsNullable String@JsNullable StringA format string used to render point labels.@JsNullable StringThe shape name.@JsNullable StringThe shape color.@JsNullable StringThe shape label.@JsNullable DoubleThe shape size.@JsNullable BooleanWhether shapes are visible.@JsNullable StringA format string used to render X values in tooltips.@JsNullable StringA format string used to render Y values in tooltips. -
Constructor Summary
ConstructorsConstructorDescriptionJsSeriesDescriptor(jsinterop.base.JsPropertyMap<Object> source, Map<Object, JsAxisDescriptor> axisMap) -
Method Summary
-
Field Details
-
plotStyle
-
name
-
linesVisible
Whether lines are visible. -
shapesVisible
Whether shapes are visible. -
gradientVisible
Whether the series uses gradient rendering. -
lineColor
The line color. -
pointLabelFormat
A format string used to render point labels. This value is passed through to the underlying plotting implementation. The interpretation of the format string is defined by the plotting implementation. -
xToolTipPattern
A format string used to render X values in tooltips. This value is passed through to the underlying plotting implementation. The interpretation of the format string is defined by the plotting implementation. -
yToolTipPattern
A format string used to render Y values in tooltips. This value is passed through to the underlying plotting implementation. The interpretation of the format string is defined by the plotting implementation. -
shapeLabel
The shape label. -
shapeSize
The shape size. -
shapeColor
The shape color. -
shape
The shape name. -
dataSources
The data sources for this series.
-
-
Constructor Details
-
JsSeriesDescriptor
@JsConstructor public JsSeriesDescriptor() -
JsSeriesDescriptor
@JsIgnore public JsSeriesDescriptor(jsinterop.base.JsPropertyMap<Object> source, Map<Object, JsAxisDescriptor> axisMap)
-