Sha256: ffb2336a2893ff4695feb09a7c3921a05129490932f33f9afbb08a26d3c9731b

Contents?: true

Size: 1.78 KB

Versions: 19

Compression:

Stored size: 1.78 KB

Contents

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

#
# A demo of a clustered category chart in Excel::Writer::XLSX.
#
# reverse ('(c)'), March 2015, John McNamara, jmcnamara@cpan.org
# convert to ruby by Hideo NAKAMURA, cxn03651@msj.biglobe.ne.jp
#

require 'write_xlsx'

workbook  = WriteXLSX.new('chart_clustered.xlsx')
worksheet = workbook.add_worksheet
bold      = workbook.add_format(:bold => 1)

# Add the worksheet data that the charts will refer to.
headings = ['Types',  'Sub Type',   'Value 1', 'Value 2', 'Value 3']
data = [
  ['Type 1', 'Sub Type A', 5000,      8000,      6000],
  ['',       'Sub Type B', 2000,      3000,      4000],
  ['',       'Sub Type C', 250,       1000,      2000],
  ['Type 2', 'Sub Type D', 6000,      6000,      6500],
  ['',       'Sub Type E', 500,       300,       200]
]

worksheet.write('A1', headings, bold)
worksheet.write_col('A2', data)

# Create a new chart object. In this case an embedded chart.
chart = workbook.add_chart(:type => 'column', :embedded => 1)

# Configure the series. Note, that the categories are 2D ranges (from column A
# to column B). This creates the clusters. The series are shown as formula
# strings for clarity but you can also use the array syntax. See the docs.
chart.add_series(
  :name       => '=Sheet1!$C$1',
  :categories => '=Sheet1!$A$2:$B$6',
  :values     => '=Sheet1!$C$2:$C$6'
)

chart.add_series(
  :name       => '=Sheet1!$D$1',
  :categories => '=Sheet1!$A$2:$B$6',
  :values     => '=Sheet1!$D$2:$D$6'
)

chart.add_series(
  :name       => '=Sheet1!$E$1',
  :categories => '=Sheet1!$A$2:$B$6',
  :values     => '=Sheet1!$E$2:$E$6'
)

# Set the Excel chart style.
chart.set_style(37)

# Turn off the legend.
chart.set_legend(:position => 'none')

# Insert the chart into the worksheet.
worksheet.insert_chart('G3', chart)

workbook.close

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
write_xlsx-1.00.0 examples/chart_clustered.rb
write_xlsx-0.99.0 examples/chart_clustered.rb
write_xlsx-0.97.0 examples/chart_clustered.rb
write_xlsx-0.90.0 examples/chart_clustered.rb
write_xlsx-0.89.0 examples/chart_clustered.rb
write_xlsx-0.88.0 examples/chart_clustered.rb
write_xlsx-0.87.0 examples/chart_clustered.rb
write_xlsx-0.86.0 examples/chart_clustered.rb
write_xlsx-0.85.11 examples/chart_clustered.rb
write_xlsx-0.85.10 examples/chart_clustered.rb
write_xlsx-0.85.9 examples/chart_clustered.rb
write_xlsx-0.85.8 examples/chart_clustered.rb
write_xlsx-0.85.7 examples/chart_clustered.rb
write_xlsx-0.85.6 examples/chart_clustered.rb
write_xlsx-0.85.5 examples/chart_clustered.rb
write_xlsx-0.85.4 examples/chart_clustered.rb
write_xlsx-0.85.3 examples/chart_clustered.rb
write_xlsx-0.85.2 examples/chart_clustered.rb
write_xlsx-0.85.1 examples/chart_clustered.rb