Sha256: 02e53bbb5b26c0ada48775cf88ad76b72736b159a3adb5f874f10f228d6d47ec
Contents?: true
Size: 1.37 KB
Versions: 19
Compression:
Stored size: 1.37 KB
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionChartPattern09 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_chart_pattern09 @xlsx = 'chart_pattern09.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet chart = workbook.add_chart(:type => 'column', :embedded => 1) # For testing, copy the randomly generated axis ids in the target xlsx file. chart.instance_variable_set(:@axis_ids, [115359744, 115361280]) data = [ [2, 2, 2], [2, 2, 2], [2, 2, 2], [2, 2, 2], [2, 2, 2], [2, 2, 2], [2, 2, 2], [2, 2, 2] ] worksheet.write('A1', data) chart.add_series(:values => '=Sheet1!$A$1:$A$3') chart.add_series(:values => '=Sheet1!$B$1:$B$3') chart.add_series(:values => '=Sheet1!$C$1:$C$3') chart.add_series(:values => '=Sheet1!$D$1:$D$3') chart.add_series(:values => '=Sheet1!$E$1:$E$3') chart.add_series(:values => '=Sheet1!$F$1:$F$3') chart.add_series(:values => '=Sheet1!$G$1:$G$3') chart.add_series(:values => '=Sheet1!$H$1:$H$3') chart.set_chartarea( :pattern => { :pattern => 'percent_5', :fg_color => 'red', :bg_color => 'yellow' } ) worksheet.insert_chart('E9', chart) workbook.close compare_for_regression end end
Version data entries
19 entries across 19 versions & 1 rubygems