deephaven.plot.plotstyle

This module provides support for different plot styles (e.g. line, bar, area, etc.).

class PlotStyle(value)[source]

Bases: Enum

An enum defining the styles of a plot (e.g. line, bar, etc.).

AREA = io.deephaven.plot.PlotStyle(objectRef=0x55743efcb9da)

An area chart (does not display shapes at data points by default).

BAR = io.deephaven.plot.PlotStyle(objectRef=0x55743efcb9c2)

A bar chart.

ERROR_BAR = io.deephaven.plot.PlotStyle(objectRef=0x55743efcba12)

An error bar plot (points are not displayed by default).

HISTOGRAM = io.deephaven.plot.PlotStyle(objectRef=0x55743efcb9f2)

A histogram chart.

LINE = io.deephaven.plot.PlotStyle(objectRef=0x55743efcb9d2)

A line chart (does not display shapes at data points by default).

OHLC = io.deephaven.plot.PlotStyle(objectRef=0x55743efcb9fa)

An open-high-low-close chart.

PIE = io.deephaven.plot.PlotStyle(objectRef=0x55743efcb9ea)

A pie chart.

SCATTER = io.deephaven.plot.PlotStyle(objectRef=0x55743efcba02)

A scatter plot (lines are not displayed by default).

STACKED_AREA = io.deephaven.plot.PlotStyle(objectRef=0x55743efcb9e2)

A stacked area chart (does not display shapes at data points by default).

STACKED_BAR = io.deephaven.plot.PlotStyle(objectRef=0x55743efcb9ca)

A stacked bar chart.

STEP = io.deephaven.plot.PlotStyle(objectRef=0x55743efcba0a)

A step plot.