ziya 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Manifest.txt +74 -28
- data/README.txt +91 -14
- data/Rakefile +1 -1
- data/bin/ziyafy +2 -0
- data/charts/AC_RunActiveContent.js +292 -0
- data/charts/charts.swf +0 -0
- data/charts/charts_library/ar3d.swf +0 -0
- data/charts/charts_library/arno.swf +0 -0
- data/charts/charts_library/ars3.swf +0 -0
- data/charts/charts_library/arst.swf +0 -0
- data/charts/charts_library/brfl.swf +0 -0
- data/charts/charts_library/brno.swf +0 -0
- data/charts/charts_library/brst.swf +0 -0
- data/charts/charts_library/buno.swf +0 -0
- data/charts/charts_library/cl3d.swf +0 -0
- data/charts/charts_library/clfl.swf +0 -0
- data/charts/charts_library/clno.swf +0 -0
- data/charts/charts_library/clp3.swf +0 -0
- data/charts/charts_library/cls3.swf +0 -0
- data/charts/charts_library/clst.swf +0 -0
- data/charts/charts_library/cnno.swf +0 -0
- data/charts/charts_library/lnno.swf +0 -0
- data/charts/charts_library/mxno.swf +0 -0
- data/charts/charts_library/pi3d.swf +0 -0
- data/charts/charts_library/pino.swf +0 -0
- data/charts/charts_library/pono.swf +0 -0
- data/charts/charts_library/scno.swf +0 -0
- data/charts/full_screen.swf +0 -0
- data/charts/sliders/black.swf +0 -0
- data/charts/sliders/preview_handle_1.swf +0 -0
- data/charts/sliders/preview_handle_2.swf +0 -0
- data/fred.rb +36 -0
- data/gauges/designs/circle.yml +18 -0
- data/gauges/designs/signal.yml +14 -0
- data/gauges/designs/thermo.yml +119 -0
- data/gauges/designs/title.yml +11 -0
- data/gauges/gauge.swf +0 -0
- data/lib/ziya.rb +17 -5
- data/lib/ziya/charts/area.rb +6 -1
- data/lib/ziya/charts/area_threed.rb +16 -0
- data/lib/ziya/charts/bar.rb +8 -3
- data/lib/ziya/charts/base.rb +210 -153
- data/lib/ziya/charts/bubble.rb +18 -0
- data/lib/ziya/charts/candle_stick.rb +6 -1
- data/lib/ziya/charts/column.rb +7 -2
- data/lib/ziya/charts/column_threed.rb +6 -1
- data/lib/ziya/charts/floating_bar.rb +6 -1
- data/lib/ziya/charts/floating_column.rb +7 -2
- data/lib/ziya/charts/line.rb +7 -2
- data/lib/ziya/charts/mixed.rb +5 -0
- data/lib/ziya/charts/parallel_threed_column.rb +6 -1
- data/lib/ziya/charts/pie.rb +7 -2
- data/lib/ziya/charts/pie_threed.rb +7 -2
- data/lib/ziya/charts/polar.rb +6 -1
- data/lib/ziya/charts/scatter.rb +6 -1
- data/lib/ziya/charts/stacked_area.rb +5 -0
- data/lib/ziya/charts/stacked_bar.rb +5 -0
- data/lib/ziya/charts/stacked_column.rb +7 -2
- data/lib/ziya/charts/stacked_threed_area.rb +16 -0
- data/lib/ziya/charts/stacked_threed_column.rb +6 -1
- data/lib/ziya/components/area.rb +5 -2
- data/lib/ziya/components/axis_category.rb +8 -60
- data/lib/ziya/components/axis_ticks.rb +25 -27
- data/lib/ziya/components/axis_value.rb +5 -48
- data/lib/ziya/components/base.rb +59 -17
- data/lib/ziya/components/bevel.rb +15 -0
- data/lib/ziya/components/blur.rb +13 -0
- data/lib/ziya/components/chart_border.rb +4 -23
- data/lib/ziya/components/chart_grid_h.rb +17 -19
- data/lib/ziya/components/chart_grid_v.rb +18 -19
- data/lib/ziya/components/chart_guide.rb +16 -0
- data/lib/ziya/components/chart_label.rb +16 -0
- data/lib/ziya/components/chart_pref.rb +12 -12
- data/lib/ziya/components/chart_rect.rb +27 -26
- data/lib/ziya/components/chart_transition.rb +15 -16
- data/lib/ziya/components/circle.rb +5 -2
- data/lib/ziya/components/draw.rb +12 -11
- data/lib/ziya/components/draw_base.rb +10 -0
- data/lib/ziya/components/filter.rb +26 -0
- data/lib/ziya/components/glow.rb +14 -0
- data/lib/ziya/components/image.rb +5 -1
- data/lib/ziya/components/legend.rb +18 -0
- data/lib/ziya/components/line.rb +6 -2
- data/lib/ziya/components/link.rb +9 -9
- data/lib/ziya/components/link_data.rb +9 -10
- data/lib/ziya/components/rect.rb +7 -2
- data/lib/ziya/components/scroll.rb +26 -0
- data/lib/ziya/components/shadow.rb +14 -0
- data/lib/ziya/components/text.rb +5 -1
- data/lib/ziya/components/update.rb +19 -0
- data/lib/ziya/gauges/base.rb +172 -0
- data/lib/ziya/gauges/radial.rb +18 -0
- data/lib/ziya/gauges/signal.rb +138 -0
- data/lib/ziya/gauges/support/area.rb +13 -0
- data/lib/ziya/gauges/support/base.rb +33 -0
- data/lib/ziya/gauges/support/circle.rb +14 -0
- data/lib/ziya/gauges/support/design.rb +5 -0
- data/lib/ziya/gauges/support/image.rb +12 -0
- data/lib/ziya/gauges/support/line.rb +12 -0
- data/lib/ziya/gauges/support/link.rb +24 -0
- data/lib/ziya/gauges/support/move.rb +15 -0
- data/lib/ziya/gauges/support/point.rb +12 -0
- data/lib/ziya/gauges/support/polygon.rb +13 -0
- data/lib/ziya/gauges/support/radial_base.rb +21 -0
- data/lib/ziya/gauges/support/radial_numbers.rb +41 -0
- data/lib/ziya/gauges/support/radial_ticks.rb +29 -0
- data/lib/ziya/gauges/support/rect.rb +14 -0
- data/lib/ziya/gauges/support/rotate.rb +15 -0
- data/lib/ziya/gauges/support/scale.rb +15 -0
- data/lib/ziya/gauges/support/text.rb +21 -0
- data/lib/ziya/gauges/support/update.rb +12 -0
- data/lib/ziya/gauges/thermo.rb +121 -0
- data/lib/ziya/helpers/base_helper.rb +39 -6
- data/lib/ziya/utils/text.rb +6 -0
- data/lib/ziya/version.rb +1 -1
- data/lib/ziya/ziya_helper.rb +289 -62
- data/spec/charts/base_spec.rb +35 -21
- data/spec/charts/chart_type_spec.rb +24 -3
- data/spec/components/area_spec.rb +9 -2
- data/spec/components/draw_spec.rb +1 -2
- data/spec/components/filter_spec.rb +27 -0
- data/spec/components/link_spec.rb +1 -2
- data/spec/components/series_color_spec.rb +1 -2
- data/spec/components/series_explode_spec.rb +1 -2
- data/spec/components/series_switch_spec.rb +1 -2
- data/spec/designs/circle.yml +7 -0
- data/spec/designs/crapping_out.yml +8 -0
- data/spec/designs/gauge_1.yml +43 -0
- data/spec/designs/gauge_2.yml +11 -0
- data/spec/designs/gauge_no_name.yml +43 -0
- data/spec/designs/gauge_raw.yml +5 -0
- data/spec/designs/thermo.yml +13 -0
- data/spec/gauges/base_spec.rb +90 -0
- data/spec/gauges/signal_spec.rb +36 -0
- data/spec/gauges/support/area_spec.rb +40 -0
- data/spec/gauges/support/circle_spec.rb +78 -0
- data/spec/gauges/support/image_spec.rb +35 -0
- data/spec/gauges/support/line_spec.rb +34 -0
- data/spec/gauges/support/link_spec.rb +35 -0
- data/spec/gauges/support/move_spec.rb +45 -0
- data/spec/gauges/support/polygon_spec.rb +36 -0
- data/spec/gauges/support/radial_numbers_spec.rb +35 -0
- data/spec/gauges/support/radial_ticks_spec.rb +30 -0
- data/spec/gauges/support/rotate_spec.rb +45 -0
- data/spec/gauges/support/scale_spec.rb +46 -0
- data/spec/gauges/support/text_spec.rb +40 -0
- data/spec/gauges/thermo_spec.rb +49 -0
- data/spec/helpers/base_helper_spec.rb +20 -6
- data/spec/spec_helper.rb +4 -1
- data/spec/test_helpers/gauge_2_helper.rb +17 -0
- data/spec/utils/logger_spec.rb +1 -3
- data/spec/utils/text_spec.rb +1 -2
- data/spec/ziya_helper_spec.rb +88 -11
- data/spec/ziya_spec.rb +1 -1
- data/tasks/gem.rake +1 -1
- metadata +79 -32
- data/charts/themes/commando/bar_chart.yml +0 -9
- data/charts/themes/commando/base_chart.yml +0 -65
- data/charts/themes/commando/column_chart.yml +0 -13
- data/charts/themes/commando/column_threed_chart.yml +0 -25
- data/charts/themes/commando/parallel_threed_column_chart.yml +0 -17
- data/charts/themes/commando/pie_chart.yml +0 -22
- data/charts/themes/commando/pie_threed_chart.yml +0 -28
- data/charts/themes/commando/polar_chart.yml +0 -11
- data/charts/themes/commando/stacked_bar_chart.yml +0 -9
- data/charts/themes/commando/stacked_column_chart.yml +0 -14
- data/charts/themes/commando/stacked_threed_column_chart.yml +0 -17
- data/charts/themes/default/bar_chart.yml +0 -3
- data/charts/themes/default/base_chart.yml +0 -67
- data/charts/themes/default/column_chart.yml +0 -13
- data/charts/themes/default/column_threed_chart.yml +0 -25
- data/charts/themes/default/parallel_threed_column_chart.yml +0 -17
- data/charts/themes/default/pie_chart.yml +0 -29
- data/charts/themes/default/pie_threed_chart.yml +0 -28
- data/charts/themes/default/polar_chart.yml +0 -12
- data/charts/themes/default/stacked_bar_chart.yml +0 -3
- data/charts/themes/default/stacked_column_chart.yml +0 -14
- data/charts/themes/default/stacked_threed_column_chart.yml +0 -17
- data/charts/themes/default/test.yml +0 -4
- data/lib/ziya/components/chart_value.rb +0 -71
- data/lib/ziya/components/legend_label.rb +0 -18
- data/lib/ziya/components/legend_rect.rb +0 -19
- data/lib/ziya/components/legend_transition.rb +0 -18
- data/lib/ziya/components/live_update.rb +0 -21
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<%= chart :stacked_column %>
|
|
2
|
-
<%=component :chart_value %>
|
|
3
|
-
position: top
|
|
4
|
-
|
|
5
|
-
<%=component :chart_border %>
|
|
6
|
-
left_thickness: 1
|
|
7
|
-
bottom_thickness: 3
|
|
8
|
-
|
|
9
|
-
<%=component :chart_grid_h %>
|
|
10
|
-
thickness: 3
|
|
11
|
-
|
|
12
|
-
<%=component :chart_grid_v %>
|
|
13
|
-
thickness: 1
|
|
14
|
-
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<%= chart :stacked_threed_column %>
|
|
2
|
-
<%=comp :chart_value %>
|
|
3
|
-
color: 000000
|
|
4
|
-
position: over
|
|
5
|
-
|
|
6
|
-
<%=comp :axis_category %>
|
|
7
|
-
orientation: diagonal_down
|
|
8
|
-
|
|
9
|
-
<%=comp :chart_border %>
|
|
10
|
-
left_thickness: 1
|
|
11
|
-
bottom_thickness: 3
|
|
12
|
-
|
|
13
|
-
<%=comp :chart_grid_h %>
|
|
14
|
-
thickness: 3
|
|
15
|
-
|
|
16
|
-
<%=comp :chart_grid_v %>
|
|
17
|
-
thickness: 1
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
# -----------------------------------------------------------------------------
|
|
2
|
-
# Sets up chart labels configuration. These are the labels on top on the chart.
|
|
3
|
-
#
|
|
4
|
-
# Sets the label attributes for the values appearing on top of the chart.
|
|
5
|
-
#
|
|
6
|
-
# <tt>prefix</tt>: The characters to add before the value numbers (example: $10).
|
|
7
|
-
# The default is nothing.
|
|
8
|
-
# <tt>suffix</tt>: The characters to add after the value numbers (example: 10%).
|
|
9
|
-
# The default is nothing.
|
|
10
|
-
# <tt>decimals</tt>: The number of decimal places to the right of the decimal point (example: 10.45).
|
|
11
|
-
# The default is zero (no decimals)
|
|
12
|
-
# <tt>decimal_char</tt>: The character to use at the left of a decimal fraction (example: 1.5).
|
|
13
|
-
# The default is '.' (dot or full stop).
|
|
14
|
-
# <tt>separator</tt>: The character to place between every group of thousands (example: 1,00,000).
|
|
15
|
-
# The default is nothing.
|
|
16
|
-
# <tt>position</tt>: The position where to place the values. Each chart type has a different set of valid values.
|
|
17
|
-
# - Line chart: center, above, below, left, right, cursor, hide
|
|
18
|
-
# - Column chart: top, bottom, middle, outside, cursor, hide
|
|
19
|
-
# - Stacked Column chart: top, bottom, middle, cursor, hide
|
|
20
|
-
# - Floating Column chart: inside, outside, cursor, hide
|
|
21
|
-
# - Stacked 3D Column chart: middle, cursor, hide
|
|
22
|
-
# - Floating 3D Column chart: over, middle, cursor, hide
|
|
23
|
-
# - Pie charts: inside, outside, cursor, hide
|
|
24
|
-
# - 3D Pie charts: inside, outside, cursor, hide
|
|
25
|
-
# - Bar chart: left, center, right, outside, cursor, hide
|
|
26
|
-
# - Stacked Bar chart: left, center, right, cursor, hide
|
|
27
|
-
# - Floating Bar chart: inside, outside, cursor, hide
|
|
28
|
-
# - Area chart: center, above, below, left, right, cursor, hide
|
|
29
|
-
# - Stacked Area chart: center, above, below, left, right, cursor, hide
|
|
30
|
-
# - Candlestick chart: cursor, hide
|
|
31
|
-
# - Scatter chart: center, above, below, left, right, cursor, hide
|
|
32
|
-
# - Polar chart: center, above, below, left, right, cursor, hide
|
|
33
|
-
# - Mixed chart: If one position key belonging to the above chart types isn't
|
|
34
|
-
# sufficient to show all the labels on a mixed chart, add more
|
|
35
|
-
# keys separated by underscores. For example, a column and line
|
|
36
|
-
# mixed chart can have the position key "top_above".
|
|
37
|
-
# <tt>hide_zero</tt>: This determines whether to hide value labels equal to zero.
|
|
38
|
-
# The default is false (shows zero labels).
|
|
39
|
-
# <tt>as_percentage</tt>: This is relevant in pie chart only. It determines whether to display the values as
|
|
40
|
-
# raw data, or as percentages of the whole pie.
|
|
41
|
-
# The default is false.
|
|
42
|
-
# <tt>font</tt>: The font used for the value labels.
|
|
43
|
-
# The default is Arial.
|
|
44
|
-
# <tt>bold</tt>: A boolean value that indicates whether the font is bold or not.
|
|
45
|
-
# The default is true.
|
|
46
|
-
# <tt>size</tt>: The font's size.
|
|
47
|
-
# The default font size is calculated based on the canvas size.
|
|
48
|
-
# <tt>color</tt>: The font's color. This must be a string holding triple hexadecimal values representing
|
|
49
|
-
# the red, green, and blue components for a color.
|
|
50
|
-
# The default is "000000" (black).
|
|
51
|
-
# <tt>background_color</tt>: This applies only when the above 'position' parameter is set to 'cursor'. It determines
|
|
52
|
-
# the labels' background color. When omitted, value labels have no background. This must be
|
|
53
|
-
# a string holding triple hexadecimal values representing the red, green, and blue
|
|
54
|
-
# components for a color.
|
|
55
|
-
# The default is omitted (no background).
|
|
56
|
-
# <tt>alpha</tt>: This affects the labels' transparency, only when the embedded font is used. Valid values
|
|
57
|
-
# are 0 (fully transparent) to 100 (fully opaque).
|
|
58
|
-
# The default is 100.
|
|
59
|
-
#
|
|
60
|
-
# See http://www.maani.us/xml_charts/index.php?menu=Reference&submenu=chart_value
|
|
61
|
-
# for additional documentation, examples and futher detail.
|
|
62
|
-
# Author:: Fernand Galiana
|
|
63
|
-
# Date:: Dec 15th, 2006
|
|
64
|
-
# -----------------------------------------------------------------------------
|
|
65
|
-
module Ziya::Components
|
|
66
|
-
class ChartValue < Base
|
|
67
|
-
has_attribute :prefix, :suffix, :decimals, :decimal_char, :separator, :position,
|
|
68
|
-
:hide_zero, :as_percentage, :font, :bold, :size, :color,
|
|
69
|
-
:background_color, :alpha
|
|
70
|
-
end
|
|
71
|
-
end
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# -----------------------------------------------------------------------------
|
|
2
|
-
# Sets up chart legend configuration
|
|
3
|
-
#
|
|
4
|
-
# Sets the legend's label attributes.
|
|
5
|
-
#
|
|
6
|
-
# <tt></tt>:
|
|
7
|
-
#
|
|
8
|
-
# See http://www.maani.us/xml_charts/index.php?menu=Reference&submenu=legend_label
|
|
9
|
-
# for additional documentation, examples and futher detail.
|
|
10
|
-
#
|
|
11
|
-
# Author:: Fernand Galiana
|
|
12
|
-
# Date:: Dec 15th, 2006
|
|
13
|
-
# -----------------------------------------------------------------------------
|
|
14
|
-
module Ziya::Components
|
|
15
|
-
class LegendLabel < Base
|
|
16
|
-
has_attribute :layout, :bullet, :font, :bold, :size, :color, :alpha
|
|
17
|
-
end
|
|
18
|
-
end
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# -----------------------------------------------------------------------------
|
|
2
|
-
# Sets up chart legend location
|
|
3
|
-
#
|
|
4
|
-
# Sets the legend area and margin.
|
|
5
|
-
#
|
|
6
|
-
# <tt></tt>:
|
|
7
|
-
#
|
|
8
|
-
# See http://www.maani.us/xml_charts/index.php?menu=Reference&submenu=legend_rect
|
|
9
|
-
# for additional documentation, examples and futher detail.
|
|
10
|
-
#
|
|
11
|
-
# Author:: Fernand Galiana
|
|
12
|
-
# Date:: Dec 15th, 2006
|
|
13
|
-
# -----------------------------------------------------------------------------
|
|
14
|
-
module Ziya::Components
|
|
15
|
-
class LegendRect < Base
|
|
16
|
-
has_attribute :x, :y, :width, :height, :margin, :fill_color, :fill_alpha,
|
|
17
|
-
:line_color, :line_alpha, :line_thickness
|
|
18
|
-
end
|
|
19
|
-
end
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# -----------------------------------------------------------------------------
|
|
2
|
-
# Sets up transition on the chart legends when chart first displays
|
|
3
|
-
#
|
|
4
|
-
# Sets the transition attributes for the legend.
|
|
5
|
-
#
|
|
6
|
-
# <tt></tt>:
|
|
7
|
-
#
|
|
8
|
-
# See http://www.maani.us/xml_charts/index.php?menu=Reference&submenu=legend_transition
|
|
9
|
-
# for additional documentation, examples and futher detail.
|
|
10
|
-
#
|
|
11
|
-
# Author:: Fernand Galiana
|
|
12
|
-
# Date:: Dec 15th, 2006
|
|
13
|
-
# -----------------------------------------------------------------------------
|
|
14
|
-
module Ziya::Components
|
|
15
|
-
class LegendTransition < Base
|
|
16
|
-
has_attribute :type, :delay, :duration
|
|
17
|
-
end
|
|
18
|
-
end
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# -----------------------------------------------------------------------------
|
|
2
|
-
# Sets up handler for refresh the chart content. The refresh xml can only refresh
|
|
3
|
-
# parts of the chart that have changed.
|
|
4
|
-
#
|
|
5
|
-
# Updates the chart at intervals, without reloading the web page. This makes it possible
|
|
6
|
-
# to display charts with live data, change the chart's look over time for emphasis, or
|
|
7
|
-
# create a slideshow from different charts.
|
|
8
|
-
#
|
|
9
|
-
# <tt></tt>:
|
|
10
|
-
#
|
|
11
|
-
# See http://www.maani.us/xml_charts/index.php?menu=Reference&submenu=live_update
|
|
12
|
-
# for additional documentation, examples and futher detail.
|
|
13
|
-
#
|
|
14
|
-
# Author:: Fernand Galiana
|
|
15
|
-
# Date:: Dec 15th, 2006
|
|
16
|
-
# -----------------------------------------------------------------------------
|
|
17
|
-
module Ziya::Components
|
|
18
|
-
class LiveUpdate < Base
|
|
19
|
-
has_attribute :url, :delay
|
|
20
|
-
end
|
|
21
|
-
end
|