Sha256: 346c6c842960e9f59ed1abb7637b9cd8c4c0b966942bb2e25257add3e618f8b9
Contents?: true
Size: 1.11 KB
Versions: 11
Compression:
Stored size: 1.11 KB
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionChartDoughnut01 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_chart_doughnut01 @xlsx = 'chart_doughnut01.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet chart = workbook.add_chart(:type => 'doughnut', :embedded => 1) # For testing, copy the randomly generated axis ids in the target xlsx file. chart.instance_variable_set(:@axis_ids, [45686144, 45722240 ]) data = [ [ 2, 4, 6 ], [ 60, 30, 10 ] ] worksheet.write('A1', data) chart.add_series( :categories => 'Sheet1!$A$1:$A$3', :values => 'Sheet1!$B$1:$B$3' ) worksheet.insert_chart('E9', chart) workbook.close compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx, nil, nil ) end end
Version data entries
11 entries across 11 versions & 1 rubygems