Class: Google::Cloud::MigrationCenter::V1::ReportSummary::ChartData
- Inherits:
-
Object
- Object
- Google::Cloud::MigrationCenter::V1::ReportSummary::ChartData
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb
Overview
Describes a collection of data points rendered as a Chart.
Defined Under Namespace
Classes: DataPoint
Instance Attribute Summary collapse
-
#data_points ⇒ ::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::ChartData::DataPoint>
Each data point in the chart is represented as a name-value pair with the name being the x-axis label, and the value being the y-axis value.
Instance Attribute Details
#data_points ⇒ ::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::ChartData::DataPoint>
Returns Each data point in the chart is represented as a name-value pair with the name being the x-axis label, and the value being the y-axis value.
3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 |
# File 'proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb', line 3504 class ChartData include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes a single data point in the Chart. # @!attribute [rw] label # @return [::String] # The X-axis label for this data point. # @!attribute [rw] value # @return [::Float] # The Y-axis value for this data point. class DataPoint include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |