Sha256: 7e8438a26fe0791c4bf9ed2d6391474c8d83d85e6ed4c49d1abd3a2c5c281c99
Contents?: true
Size: 821 Bytes
Versions: 7
Compression:
Stored size: 821 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionChartDisplayUnits01 < Test::Unit::TestCase def setup setup_dir_var end def teardown @tempfile.close(true) end def test_chart_display_units01 @xlsx = 'chart_display_units01.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, [69572096, 93549312]) data = [ [ 10000000, 20000000, 30000000, 20000000, 10000000 ] ] worksheet.write('A1', data) chart.add_series(:values => '=Sheet1!$A$1:$A$5') worksheet.insert_chart('E9', chart) workbook.close compare_for_regression end end
Version data entries
7 entries across 7 versions & 1 rubygems