diff options
| -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' |
