Class: Google::Cloud::Monitoring::Dashboard::V1::ChartOptions
- Inherits:
-
Object
- Object
- Google::Cloud::Monitoring::Dashboard::V1::ChartOptions
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/monitoring/dashboard/v1/xychart.rb
Overview
Options to control visual rendering of a chart.
Defined Under Namespace
Modules: Mode
Instance Attribute Summary collapse
Instance Attribute Details
#mode ⇒ ::Google::Cloud::Monitoring::Dashboard::V1::ChartOptions::Mode
Returns The chart mode.
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'proto_docs/google/monitoring/dashboard/v1/xychart.rb', line 151 class ChartOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Chart mode options. module Mode # Mode is unspecified. The view will default to `COLOR`. MODE_UNSPECIFIED = 0 # The chart distinguishes data series using different color. Line # colors may get reused when there are many lines in the chart. COLOR = 1 # The chart uses the Stackdriver x-ray mode, in which each # data set is plotted using the same semi-transparent color. X_RAY = 2 # The chart displays statistics such as average, median, 95th percentile, # and more. STATS = 3 end end |