Class: Google::Cloud::GeminiDataAnalytics::V1beta::ChartOptions

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/geminidataanalytics/v1beta/context.rb

Overview

Options for chart generation.

Defined Under Namespace

Classes: ImageOptions

Instance Attribute Summary collapse

Instance Attribute Details

#image::Google::Cloud::GeminiDataAnalytics::V1beta::ChartOptions::ImageOptions



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# File 'proto_docs/google/cloud/geminidataanalytics/v1beta/context.rb', line 180

class ChartOptions
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Options for rendering images of generated charts.
  # @!attribute [rw] no_image
  #   @return [::Google::Cloud::GeminiDataAnalytics::V1beta::ChartOptions::ImageOptions::NoImage]
  #     No image.
  #
  #     Note: The following fields are mutually exclusive: `no_image`, `svg`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] svg
  #   @return [::Google::Cloud::GeminiDataAnalytics::V1beta::ChartOptions::ImageOptions::SvgOptions]
  #     SVG format.
  #
  #     Note: The following fields are mutually exclusive: `svg`, `no_image`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class ImageOptions
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # No image.
    class NoImage
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # SVG options.
    class SvgOptions
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end
end