Sha256: 7dea70603650bbf25eff5619c3744d53bd40d8499e388bda647ec9a3b676d557

Contents?: true

Size: 1.95 KB

Versions: 32

Compression:

Stored size: 1.95 KB

Contents

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

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

  def teardown
    File.delete(@xlsx) if File.exist?(@xlsx)
  end

  def test_chart_drop_lines04
    @xlsx = 'chart_drop_lines04.xlsx'
    workbook    = WriteXLSX.new(@xlsx)
    worksheet   = workbook.add_worksheet
    chart       = workbook.add_chart(:type => 'stock', :embedded => 1)
    data_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, [49019520, 49222016])

    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], data_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.set_drop_lines

    chart.add_series(
                     :categories => '=Sheet1!$A$1:$A$5',
                     :values     => '=Sheet1!$B$1:$B$5'
                     )
    chart.add_series(
                     :categories => '=Sheet1!$A$1:$A$5',
                     :values     => '=Sheet1!$C$1:$C$5'
                     )
    chart.add_series(
                     :categories => '=Sheet1!$A$1:$A$5',
                     :values     => '=Sheet1!$D$1:$D$5'
                     )

    chart.set_drop_lines

    worksheet.insert_chart('E9', chart)

    workbook.close
    compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx,
                                [],
                                { 'xl/charts/chart1.xml' => [ '<c:formatCode', ] }
                                )
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
write_xlsx-0.85.5 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.85.4 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.85.3 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.85.2 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.85.1 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.83.0 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.81.1 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.81.0 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.80.0 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.79.0 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.78.0 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.77.2 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.77.1 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.77.0 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.76.3 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.76.2 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.76.1 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.76.0 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.75.0 test/regression/test_chart_drop_lines04.rb
write_xlsx-0.74.0 test/regression/test_chart_drop_lines04.rb