# -*- coding: utf-8 -*- require 'helper' class TestRegressionChartChartArea05 < Test::Unit::TestCase def setup setup_dir_var end def teardown @tempfile.close(true) end def test_chart_chartarea05 @xlsx = 'chart_chartarea05.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet chart = workbook.add_chart(:type => 'pie', :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_chartarea( :border => { :color => '#FFFF00', :dash_type => 'long_dash' }, :fill => { :color => '#92D050' } ) # This should be ignored for a pie chart. chart.set_plotarea( :border => { :dash_type => 'dash_dot' }, :fill => { :color => '#FFC000' } ) worksheet.insert_chart('E9', chart) workbook.close compare_for_regression end end