Sha256: 0b985f0d30419df8a059d42fdc3c639c0485093847b6fc1d8400be683a22462b
Contents?: true
Size: 1015 Bytes
Versions: 11
Compression:
Stored size: 1015 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionChartDoughnut05 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_chart_doughnut05 @xlsx = 'chart_doughnut05.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet chart = workbook.add_chart(:type => 'doughnut', :embedded => 1) 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' ) chart.set_rotation(360) 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