Class PlotType (2.15.0)

PlotType(value)

The types of plotting strategies for data sets.

Values: PLOT_TYPE_UNSPECIFIED (0): Plot type is unspecified. The view will default to LINE. LINE (1): The data is plotted as a set of lines (one line per series). STACKED_AREA (2): 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. STACKED_BAR (3): 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. HEATMAP (4): 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.