Sha256: 0a0f1d3a6f67f2d5210cb7474d08dc52bc8b1074163986ab5f83efd4fe279ffa
Contents?: true
Size: 900 Bytes
Versions: 19
Compression:
Stored size: 900 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionChartDisplayUnits04 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_chart_display_units04 @xlsx = 'chart_display_units04.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, [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 => 'ten_thousands', :display_units_visible => 0) worksheet.insert_chart('E9', chart) workbook.close compare_for_regression end end
Version data entries
19 entries across 19 versions & 1 rubygems