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.
3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 |
# File 'proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb', line 3534 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 |