From e052dc78c85e828000ba555410bc761e0a3ae831 Mon Sep 17 00:00:00 2001 From: John Kiernander Date: Tue, 28 Jan 2014 16:51:10 +0000 Subject: [PATCH] Update example dimple version --- examples/advanced_bar_labels.html | 2 +- examples/advanced_bullet.html | 2 +- examples/advanced_christmas_tree.html | 2 +- examples/advanced_dynamic_line_color.html | 2 +- examples/advanced_grouped_mekko.html | 2 +- examples/advanced_interactive_legends.html | 2 +- examples/advanced_lollipop_with_hover.html | 2 +- examples/advanced_matrix.html | 2 +- examples/advanced_pong.html | 2 +- examples/advanced_price_range_lollipop.html | 2 +- examples/advanced_responsive_sizing.html | 2 +- examples/advanced_storyboard_control.html | 222 +++++++++--------- examples/advanced_time_axis.html | 2 +- examples/advanced_trellis_bar.html | 2 +- examples/advanced_waterfall.html | 2 +- examples/areas_horizontal.html | 2 +- examples/areas_horizontal_grouped.html | 2 +- examples/areas_horizontal_grouped_100pct.html | 2 +- .../areas_horizontal_grouped_stacked.html | 2 +- examples/areas_horizontal_stacked.html | 2 +- examples/areas_horizontal_stacked_100pct.html | 2 +- examples/areas_vertical.html | 2 +- examples/areas_vertical_grouped.html | 2 +- examples/areas_vertical_grouped_100pct.html | 2 +- examples/areas_vertical_grouped_stacked.html | 2 +- examples/areas_vertical_stacked.html | 2 +- examples/areas_vertical_stacked_100pct.html | 2 +- examples/bars_horizontal.html | 7 +- examples/bars_horizontal_grouped.html | 2 +- examples/bars_horizontal_grouped_stacked.html | 2 +- ...ars_horizontal_grouped_stacked_100pct.html | 2 +- examples/bars_horizontal_mekko.html | 2 +- examples/bars_horizontal_stacked.html | 2 +- examples/bars_horizontal_stacked_100pct.html | 2 +- examples/bars_matrix.html | 2 +- examples/bars_vertical.html | 2 +- examples/bars_vertical_grouped.html | 2 +- examples/bars_vertical_grouped_stacked.html | 2 +- .../bars_vertical_grouped_stacked_100pct.html | 2 +- examples/bars_vertical_mekko.html | 2 +- examples/bars_vertical_stacked.html | 2 +- examples/bars_vertical_stacked_100pct.html | 2 +- examples/bubbles_horizontal_grouped.html | 2 +- examples/bubbles_horizontal_lollipop.html | 2 +- examples/bubbles_matrix.html | 2 +- examples/bubbles_standard.html | 2 +- examples/bubbles_vertical_grouped.html | 2 +- examples/bubbles_vertical_lollipop.html | 2 +- examples/lines_horizontal.html | 2 +- examples/lines_horizontal_grouped.html | 2 +- .../lines_horizontal_grouped_stacked.html | 2 +- examples/lines_horizontal_stacked.html | 2 +- examples/lines_vertical.html | 2 +- examples/lines_vertical_grouped.html | 2 +- examples/lines_vertical_grouped_stacked.html | 2 +- examples/lines_vertical_stacked.html | 2 +- examples/scatter_horizontal_grouped.html | 2 +- examples/scatter_horizontal_lollipop.html | 2 +- examples/scatter_matrix.html | 2 +- examples/scatter_standard.html | 2 +- examples/scatter_vertical_grouped.html | 2 +- examples/scatter_vertical_lollipop.html | 2 +- .../templates/advanced_christmas_tree.html | 2 +- .../advanced_storyboard_control.html | 220 ++++++++--------- examples/templates/bars_horizontal.html | 5 +- 65 files changed, 295 insertions(+), 281 deletions(-) diff --git a/examples/advanced_bar_labels.html b/examples/advanced_bar_labels.html index fbe11c7..2f20662 100644 --- a/examples/advanced_bar_labels.html +++ b/examples/advanced_bar_labels.html @@ -3,7 +3,7 @@
- + - + - + - + - + - + - + - + - + - + - + - +
\ No newline at end of file diff --git a/examples/advanced_time_axis.html b/examples/advanced_time_axis.html index 0eefee3..be9f6f9 100644 --- a/examples/advanced_time_axis.html +++ b/examples/advanced_time_axis.html @@ -3,7 +3,7 @@
- + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/examples/bars_horizontal_grouped.html b/examples/bars_horizontal_grouped.html index a86763e..9ed64d6 100644 --- a/examples/bars_horizontal_grouped.html +++ b/examples/bars_horizontal_grouped.html @@ -3,7 +3,7 @@
- + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
\ No newline at end of file diff --git a/examples/templates/bars_horizontal.html b/examples/templates/bars_horizontal.html index 004c502..cffed7b 100644 --- a/examples/templates/bars_horizontal.html +++ b/examples/templates/bars_horizontal.html @@ -9,7 +9,10 @@ myChart.addMeasureAxis("x", "Unit Sales"); var y = myChart.addCategoryAxis("y", "Month"); y.addOrderRule("Date"); - myChart.addSeries(null, dimple.plot.bar); + var s1 = myChart.addSeries(null, dimple.plot.bar); + s1.data = data; + var s2 = myChart.addSeries("Test", dimple.plot.bubble); + s2.data = [{"Test":"Lots of words", "Month": 'test', "Unit Sales":-244434}]; myChart.draw(); });