Sha256: 74421a1133d005a3057787e41ab84f11982ded9c7311cd447fccc3991fbefb70
Contents?: true
Size: 919 Bytes
Versions: 19
Compression:
Stored size: 919 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionChartDoughnut01 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_chart_doughnut01 @xlsx = 'chart_doughnut01.xlsx' workbook = WriteXLSX.new(@io) 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_for_regression end end
Version data entries
19 entries across 19 versions & 1 rubygems