summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-08-31 22:17:25 +0900
committerRandy Morgan <[email protected]>2012-08-31 22:17:25 +0900
commit8f237fdc5aa18c17b5474e8d2b5454a87c89cb56 (patch)
tree4f86d64940935d0cdbc46fdd40c9441944dad916
parentb75e0f2167837e2baf1ef1bd6f21a27904078ec8 (diff)
downloadcaxlsx-8f237fdc5aa18c17b5474e8d2b5454a87c89cb56.tar.gz
caxlsx-8f237fdc5aa18c17b5474e8d2b5454a87c89cb56.zip
add example of removing tick labels
-rw-r--r--examples/basic_charts.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/basic_charts.rb b/examples/basic_charts.rb
index 86af5d9c..097af57e 100644
--- a/examples/basic_charts.rb
+++ b/examples/basic_charts.rb
@@ -24,6 +24,8 @@ end
chart.add_series :data => sheet["A2:D2"], :labels => sheet["A1:D1"], :title => 'bob'
chart.d_lbls.show_val = true
chart.d_lbls.show_cat_name = true
+ chart.catAxis.tick_lbl_pos = :none
+
end
end