DataSetPlotType

enum DataSetPlotType : Enum<DataSetPlotType> , ConvertibleToJava<DataSetPlotType>

How this data should be plotted on the chart.

Entries

Link copied to clipboard

Plot type is unspecified. The view will default to LINE.

Link copied to clipboard

The data is plotted as a set of lines (one line per series).

Link copied to clipboard

The data is plotted as a set of filled areas (one area per series), with the areas stacked vertically (the base of each area is the top of its predecessor, and the base of the first area is the x-axis). Since the areas do not overlap, each is filled with a different opaque color.

Link copied to clipboard

The data is plotted as a set of rectangular boxes (one box per series), with the boxes stacked vertically (the base of each box is the top of its predecessor, and the base of the first box is the x-axis). Since the boxes do not overlap, each is filled with a different opaque color.

Link copied to clipboard

The data is plotted as a heatmap. The series being plotted must have a DISTRIBUTION value type. The value of each bucket in the distribution is displayed as a color. This type is not currently available in the Stackdriver Monitoring application.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toJava(): DataSetPlotType
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val javaValue: DataSetPlotType
Link copied to clipboard
Link copied to clipboard