Sha256: 134fcb1fb0632d7d44c2220ff2cbcadcde9be1e047abd8d50a4a90f3e32648a9

Contents?: true

Size: 609 Bytes

Versions: 3

Compression:

Stored size: 609 Bytes

Contents

# frozen_string_literal: true

module Goldendocx
  module Charts
    module Properties
      class LineChartProperty
        include Goldendocx::Element

        namespace :c
        tag :lineChart

        embeds_one :grouping, class_name: 'Goldendocx::Charts::Properties::GroupingProperty', auto_build: true

        embeds_many :axes, class_name: 'Goldendocx::Charts::Properties::AxisProperty'
        embeds_many :series, class_name: 'Goldendocx::Charts::Series'

        def initialize
          build_axis(axis_id: 9374902)
          build_axis(axis_id: 2094739)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
goldendocx-0.3.0 lib/goldendocx/charts/properties/line_chart_property.rb
goldendocx-0.2.3 lib/goldendocx/charts/properties/line_chart_property.rb
goldendocx-0.2.2 lib/goldendocx/charts/properties/line_chart_property.rb