diff options
| author | patorash <[email protected]> | 2013-09-27 01:55:03 +0900 |
|---|---|---|
| committer | patorash <[email protected]> | 2013-09-27 01:55:03 +0900 |
| commit | 70eb08fdbbd7b36d2cd1bcb40eba1eaf381a63ac (patch) | |
| tree | 38ee901720f6cadc9b1f372a12eb57e79ee194fd /examples | |
| parent | 2454f8120b6af255ed95c523a6893f002b2e956a (diff) | |
| download | caxlsx-70eb08fdbbd7b36d2cd1bcb40eba1eaf381a63ac.tar.gz caxlsx-70eb08fdbbd7b36d2cd1bcb40eba1eaf381a63ac.zip | |
Fix example.rb
Diffstat (limited to 'examples')
| -rwxr-xr-x | examples/example.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example.rb b/examples/example.rb index f8ed9241..4960ce9f 100755 --- a/examples/example.rb +++ b/examples/example.rb @@ -470,7 +470,7 @@ if examples.include? :line_chart sheet.add_chart(Axlsx::LineChart, :title => "Simple Line Chart", :rotX => 30, :rotY => 20) do |chart| chart.start_at 0, 21 chart.end_at 10, 41 - chart.add_series :data => sheet["A3:A6"], :title => sheet["A2"], :color => "FF0000", show_marker => true, :smooth => true + chart.add_series :data => sheet["A3:A6"], :title => sheet["A2"], :color => "FF0000", :show_marker => true, :smooth => true chart.add_series :data => sheet["B3:B6"], :title => sheet["B2"], :color => "00FF00" chart.catAxis.title = 'X Axis' chart.valAxis.title = 'Y Axis' |
