Sha256: 3661af187a00787af32a26d02f57dc18b13e093e05cf16668570b863093474a0

Contents?: true

Size: 1.95 KB

Versions: 7

Compression:

Stored size: 1.95 KB

Contents

# -*- coding: utf-8 -*-
require 'helper'

class TestRegressionChartErrorbars07 < Test::Unit::TestCase
  def setup
    setup_dir_var
  end

  def teardown
    @tempfile.close(true)
  end

  def test_chart_errorbars07
    @xlsx = 'chart_errorbars07.xlsx'
    workbook    = WriteXLSX.new(@io)
    worksheet   = workbook.add_worksheet
    chart       = workbook.add_chart(:type => 'stock', :embedded => 1)
    date_format = workbook.add_format(:num_format => 14)

    # For testing, copy the randomly generated axis ids in the target xlsx file.
    chart.instance_variable_set(:@axis_ids, [45470848, 45472768])

    data = [
            [ '2007-01-01T', '2007-01-02T', '2007-01-03T', '2007-01-04T', '2007-01-05T' ],
            [ 27.2,  25.03, 19.05, 20.34, 18.5 ],
            [ 23.49, 19.55, 15.12, 17.84, 16.34 ],
            [ 25.45, 23.05, 17.32, 20.45, 17.34 ]
           ]

    (0..4).each do |row|
      worksheet.write_date_time(row, 0, data[0][row], date_format)
      worksheet.write(row, 1, data[1][row])
      worksheet.write(row, 2, data[2][row])
      worksheet.write(row, 3, data[3][row])
    end

    worksheet.set_column('A:D', 11)

    chart.add_series(
                     :categories   => '=Sheet1!$A$1:$A$5',
                     :values       => '=Sheet1!$B$1:$B$5',
                     :y_error_bars => { :type => 'standard_error'}
                     )

    chart.add_series(
                     :categories => '=Sheet1!$A$1:$A$5',
                     :values     => '=Sheet1!$C$1:$C$5',
                     :y_error_bars => { :type => 'standard_error'}
                     )

    chart.add_series(
                     :categories => '=Sheet1!$A$1:$A$5',
                     :values     => '=Sheet1!$D$1:$D$5',
                     :y_error_bars => { :type => 'standard_error'}
                     )

    worksheet.insert_chart('E9', chart)

    workbook.close
    compare_for_regression(
      [],
      {'xl/charts/chart1.xml' => [ '<c:formatCode']}
    )
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
write_xlsx-0.86.0 test/regression/test_chart_errorbars07.rb
write_xlsx-0.85.11 test/regression/test_chart_errorbars07.rb
write_xlsx-0.85.10 test/regression/test_chart_errorbars07.rb
write_xlsx-0.85.9 test/regression/test_chart_errorbars07.rb
write_xlsx-0.85.8 test/regression/test_chart_errorbars07.rb
write_xlsx-0.85.7 test/regression/test_chart_errorbars07.rb
write_xlsx-0.85.6 test/regression/test_chart_errorbars07.rb