Class: DatadogAPIClient::V1::WidgetAxis
- Inherits:
-
Object
- Object
- DatadogAPIClient::V1::WidgetAxis
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v1/models/widget_axis.rb
Overview
Axis controls for the widget.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#include_zero ⇒ Object
Set to ‘true` to include zero.
-
#label ⇒ Object
The label of the axis to display on the graph.
-
#max ⇒ Object
Specifies maximum numeric value to show on the axis.
-
#min ⇒ Object
Specifies minimum numeric value to show on the axis.
-
#scale ⇒ Object
Specifies the scale type.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
39 40 41 |
# File 'lib/datadog_api_client/v1/models/widget_axis.rb', line 39 def additional_properties @additional_properties end |
#include_zero ⇒ Object
Set to ‘true` to include zero.
25 26 27 |
# File 'lib/datadog_api_client/v1/models/widget_axis.rb', line 25 def include_zero @include_zero end |
#label ⇒ Object
The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
28 29 30 |
# File 'lib/datadog_api_client/v1/models/widget_axis.rb', line 28 def label @label end |
#max ⇒ Object
Specifies maximum numeric value to show on the axis. Defaults to ‘auto`.
31 32 33 |
# File 'lib/datadog_api_client/v1/models/widget_axis.rb', line 31 def max @max end |
#min ⇒ Object
Specifies minimum numeric value to show on the axis. Defaults to ‘auto`.
34 35 36 |
# File 'lib/datadog_api_client/v1/models/widget_axis.rb', line 34 def min @min end |
#scale ⇒ Object
Specifies the scale type. Possible values are ‘linear`, `log`, `sqrt`, and `pow##` (for example `pow2` or `pow0.5`).
37 38 39 |
# File 'lib/datadog_api_client/v1/models/widget_axis.rb', line 37 def scale @scale end |