# -*- coding: utf-8 -*- require 'helper' class TestRegressionChartDisplayUnits10 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_chart_display_units10 @xlsx = 'chart_display_units10.xlsx' workbook = WriteXLSX.new(@xlsx) 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, [56159232, 61364096]) data = [ [ 10000000, 20000000, 30000000, 20000000, 10000000 ] ] worksheet.write('A1', data) chart.add_series(:values => '=Sheet1!$A$1:$A$5') chart.set_y_axis(:display_units => 'trillions', :display_units_visible => 0) worksheet.insert_chart('E9', chart) workbook.close compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx) end end