Class: Google::Cloud::Monitoring::Dashboard::V1::ColumnLayout
- Inherits:
-
Object
- Object
- Google::Cloud::Monitoring::Dashboard::V1::ColumnLayout
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/monitoring/dashboard/v1/layouts.rb
Overview
A simplified layout that divides the available space into vertical columns and arranges a set of widgets vertically in each column.
Defined Under Namespace
Classes: Column
Instance Attribute Summary collapse
-
#columns ⇒ ::Array<::Google::Cloud::Monitoring::Dashboard::V1::ColumnLayout::Column>
The columns of content to display.
Instance Attribute Details
#columns ⇒ ::Array<::Google::Cloud::Monitoring::Dashboard::V1::ColumnLayout::Column>
Returns The columns of content to display.
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'proto_docs/google/monitoring/dashboard/v1/layouts.rb', line 111 class ColumnLayout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Defines the layout properties and content for a column. # @!attribute [rw] weight # @return [::Integer] # The relative weight of this column. The column weight is used to adjust # the width of columns on the screen (relative to peers). # Greater the weight, greater the width of the column on the screen. # If omitted, a value of 1 is used while rendering. # @!attribute [rw] widgets # @return [::Array<::Google::Cloud::Monitoring::Dashboard::V1::Widget>] # The display widgets arranged vertically in this column. class Column include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |