WordPress Charts and Graphs Lite - Version 1.4

Version Description

  • Implemented aggregation target and selection mode options for candlestick chart
  • Implemented focus target and data opacity for columnar chars
  • Implemented data opacity and interpolate nulls settings for line chart
  • Implemented ability to edit tooltip settings
  • Implemented new settings for linear charts like selection mode and aggregation target
  • Implemented area and point opacity settings for area chart
  • Implemented new settings for pie chart like pie hole, start angle and slice offset
  • Implemented ability to select a color for chart title and legend items
  • Fixed number formatting settings for linear charts, from now it works only for axis labels
  • Reworked general settings section by moving title and font settings into separate groups
Download this release

Release Info

Developer madpixels
Plugin Icon WordPress Charts and Graphs Lite
Version 1.4
Comparing to
See all releases

Code changes from version 1.3.0.2 to 1.4

classes/Visualizer/Plugin.php CHANGED
@@ -30,7 +30,7 @@
30
  class Visualizer_Plugin {
31
 
32
  const NAME = 'visualizer';
33
- const VERSION = '1.3.0.2';
34
 
35
  // custom post types
36
  const CPT_VISUALIZER = 'visualizer';
30
  class Visualizer_Plugin {
31
 
32
  const NAME = 'visualizer';
33
+ const VERSION = '1.4';
34
 
35
  // custom post types
36
  const CPT_VISUALIZER = 'visualizer';
classes/Visualizer/Render/Page.php CHANGED
@@ -77,7 +77,7 @@ class Visualizer_Render_Page extends Visualizer_Render {
77
  esc_html_e( 'Rate it on WordPress.org', Visualizer_Plugin::NAME );
78
  echo '</a>';
79
  echo '<div id="flattr">';
80
- echo '<a href="https://flattr.com/submit/auto?user_id=madpixels&url=http%3A%2F%2Fwordpress.org%2Fplugins%2Fvisualizer%2F&category=software&title=WordPress+Visualizer&description=', urlencode( 'WordPress Visualizer plugin is a simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages.' ), '" target="_blank">';
81
  echo '<img src="//api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0">';
82
  echo '</a>';
83
  echo '</div>';
77
  esc_html_e( 'Rate it on WordPress.org', Visualizer_Plugin::NAME );
78
  echo '</a>';
79
  echo '<div id="flattr">';
80
+ echo '<a href="http://goo.gl/hN9FYf" target="_blank">';
81
  echo '<img src="//api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0">';
82
  echo '</a>';
83
  echo '</div>';
classes/Visualizer/Render/Sidebar.php CHANGED
@@ -133,6 +133,13 @@ abstract class Visualizer_Render_Sidebar extends Visualizer_Render {
133
  $this->title,
134
  esc_html__( 'Text to display above the chart.', Visualizer_Plugin::NAME )
135
  );
 
 
 
 
 
 
 
136
  }
137
 
138
  /**
@@ -145,13 +152,17 @@ abstract class Visualizer_Render_Sidebar extends Visualizer_Render {
145
  protected function _renderGeneralSettings() {
146
  self::_renderGroupStart( esc_html__( 'General Settings', Visualizer_Plugin::NAME ) );
147
  self::_renderSectionStart();
148
- self::_renderSectionDescription( esc_html__( 'Configure title, font styles and legend positioning settings for the chart.', Visualizer_Plugin::NAME ) );
 
149
 
 
150
  $this->_renderChartTitleSettings();
 
151
 
 
152
  echo '<div class="section-item">';
153
  echo '<a class="more-info" href="javascript:;">[?]</a>';
154
- echo '<b>', esc_html__( 'Font Family And Size', Visualizer_Plugin::NAME ), '</b>';
155
 
156
  echo '<table class="section-table" cellspacing="0" cellpadding="0" border="0">';
157
  echo '<tr>';
@@ -198,10 +209,51 @@ abstract class Visualizer_Render_Sidebar extends Visualizer_Render {
198
  $this->_alignments,
199
  esc_html__( 'Determines the alignment of the legend.', Visualizer_Plugin::NAME )
200
  );
 
 
 
 
 
 
 
 
 
 
 
201
  self::_renderSectionEnd();
202
  self::_renderGroupEnd();
203
  }
204
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  /**
206
  * Renders chart view settings group.
207
  *
133
  $this->title,
134
  esc_html__( 'Text to display above the chart.', Visualizer_Plugin::NAME )
135
  );
136
+
137
+ self::_renderColorPickerItem(
138
+ esc_html__( 'Chart Title Color', Visualizer_Plugin::NAME ),
139
+ 'titleTextStyle[color]',
140
+ isset( $this->titleTextStyle['color'] ) ? $this->titleTextStyle['color'] : null,
141
+ '#000'
142
+ );
143
  }
144
 
145
  /**
152
  protected function _renderGeneralSettings() {
153
  self::_renderGroupStart( esc_html__( 'General Settings', Visualizer_Plugin::NAME ) );
154
  self::_renderSectionStart();
155
+ self::_renderSectionDescription( esc_html__( 'Configure title, font styles, tooltip, legend and else settings for the chart.', Visualizer_Plugin::NAME ) );
156
+ self::_renderSectionEnd();
157
 
158
+ self::_renderSectionStart( esc_html__( 'Title', Visualizer_Plugin::NAME ), false );
159
  $this->_renderChartTitleSettings();
160
+ self::_renderSectionEnd();
161
 
162
+ self::_renderSectionStart( esc_html__( 'Font Styles' ), false );
163
  echo '<div class="section-item">';
164
  echo '<a class="more-info" href="javascript:;">[?]</a>';
165
+ echo '<b>', esc_html__( 'Family And Size', Visualizer_Plugin::NAME ), '</b>';
166
 
167
  echo '<table class="section-table" cellspacing="0" cellpadding="0" border="0">';
168
  echo '<tr>';
209
  $this->_alignments,
210
  esc_html__( 'Determines the alignment of the legend.', Visualizer_Plugin::NAME )
211
  );
212
+
213
+ self::_renderColorPickerItem(
214
+ esc_html__( 'Font Color', Visualizer_Plugin::NAME ),
215
+ 'legend[textStyle][color]',
216
+ isset( $this->legend['textStyle']['color'] ) ? $this->legend['textStyle']['color'] : null,
217
+ '#000'
218
+ );
219
+ self::_renderSectionEnd();
220
+
221
+ self::_renderSectionStart( esc_html__( 'Tooltip', Visualizer_Plugin::NAME ), false );
222
+ $this->_renderTooltipSettigns();
223
  self::_renderSectionEnd();
224
  self::_renderGroupEnd();
225
  }
226
 
227
+ /**
228
+ * Renders tooltip settings section.
229
+ *
230
+ * @since 1.4.0
231
+ *
232
+ * @access protected
233
+ */
234
+ protected function _renderTooltipSettigns() {
235
+ self::_renderSelectItem(
236
+ esc_html__( 'Trigger', Visualizer_Plugin::NAME ),
237
+ 'tooltip[trigger]',
238
+ isset( $this->tooltip['trigger'] ) ? $this->tooltip['trigger'] : null,
239
+ array(
240
+ '' => '',
241
+ 'focus' => esc_html__( 'The tooltip will be displayed when the user hovers over an element', Visualizer_Plugin::NAME ),
242
+ 'selection' => esc_html__( 'The tooltip will be displayed when the user selects an element', Visualizer_Plugin::NAME ),
243
+ 'none' => esc_html__( 'The tooltip will not be displayed', Visualizer_Plugin::NAME ),
244
+ ),
245
+ esc_html__( 'Determines the user interaction that causes the tooltip to be displayed.', Visualizer_Plugin::NAME )
246
+ );
247
+
248
+ self::_renderSelectItem(
249
+ esc_html__( 'Show Color Code', Visualizer_Plugin::NAME ),
250
+ 'tooltip[showColorCode]',
251
+ isset( $this->tooltip['showColorCode'] ) ? $this->tooltip['showColorCode'] : null,
252
+ $this->_yesno,
253
+ esc_html__( 'If set to yes, will show colored squares next to the slice information in the tooltip.', Visualizer_Plugin::NAME )
254
+ );
255
+ }
256
+
257
  /**
258
  * Renders chart view settings group.
259
  *
classes/Visualizer/Render/Sidebar/Columnar.php CHANGED
@@ -43,6 +43,20 @@ abstract class Visualizer_Render_Sidebar_Columnar extends Visualizer_Render_Side
43
  protected function _renderColumnarSettings() {
44
  self::_renderGroupStart( esc_html__( 'Bars Settings', Visualizer_Plugin::NAME ) );
45
  self::_renderSectionStart();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  self::_renderSelectItem(
47
  esc_html__( 'Is Stacked', Visualizer_Plugin::NAME ),
48
  'isStacked',
@@ -50,8 +64,18 @@ abstract class Visualizer_Render_Sidebar_Columnar extends Visualizer_Render_Side
50
  $this->_yesno,
51
  esc_html__( 'If set to yes, series elements are stacked.', Visualizer_Plugin::NAME )
52
  );
 
 
 
 
 
 
 
 
 
 
53
  self::_renderSectionEnd();
54
  self::_renderGroupEnd();
55
  }
56
-
57
  }
43
  protected function _renderColumnarSettings() {
44
  self::_renderGroupStart( esc_html__( 'Bars Settings', Visualizer_Plugin::NAME ) );
45
  self::_renderSectionStart();
46
+ self::_renderSelectItem(
47
+ esc_html__( 'Focus Target', Visualizer_Plugin::NAME ),
48
+ 'focusTarget',
49
+ $this->focusTarget,
50
+ array(
51
+ '' => '',
52
+ 'datum' => esc_html__( 'Focus on a single data point.', Visualizer_Plugin::NAME ),
53
+ 'category' => esc_html__( 'Focus on a grouping of all data points along the major axis.', Visualizer_Plugin::NAME ),
54
+ ),
55
+ esc_html__( 'The type of the entity that receives focus on mouse hover. Also affects which entity is selected by mouse click.', Visualizer_Plugin::NAME )
56
+ );
57
+
58
+ echo '<div class="section-delimiter"></div>';
59
+
60
  self::_renderSelectItem(
61
  esc_html__( 'Is Stacked', Visualizer_Plugin::NAME ),
62
  'isStacked',
64
  $this->_yesno,
65
  esc_html__( 'If set to yes, series elements are stacked.', Visualizer_Plugin::NAME )
66
  );
67
+
68
+ echo '<div class="section-delimiter"></div>';
69
+
70
+ self::_renderTextItem(
71
+ esc_html__( 'Bars Opacity', Visualizer_Plugin::NAME ),
72
+ 'dataOpacity',
73
+ $this->dataOpacity,
74
+ esc_html__( 'Bars transparency, with 1.0 being completely opaque and 0.0 fully transparent.', Visualizer_Plugin::NAME ),
75
+ '1.0'
76
+ );
77
  self::_renderSectionEnd();
78
  self::_renderGroupEnd();
79
  }
80
+
81
  }
classes/Visualizer/Render/Sidebar/Graph.php CHANGED
@@ -93,7 +93,12 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
93
  * @access protected
94
  */
95
  protected function _renderChartTitleSettings() {
96
- parent::_renderChartTitleSettings();
 
 
 
 
 
97
 
98
  self::_renderSelectItem(
99
  esc_html__( 'Chart Title Position', Visualizer_Plugin::NAME ),
@@ -103,6 +108,13 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
103
  esc_html__( 'Where to place the chart title, compared to the chart area.', Visualizer_Plugin::NAME )
104
  );
105
 
 
 
 
 
 
 
 
106
  echo '<div class="section-delimiter"></div>';
107
 
108
  self::_renderSelectItem(
@@ -112,8 +124,49 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
112
  $this->_positions,
113
  esc_html__( 'Determines where to place the axis titles, compared to the chart area.', Visualizer_Plugin::NAME )
114
  );
 
115
 
116
- echo '<div class="section-delimiter"></div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  }
118
 
119
  /**
@@ -126,39 +179,7 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
126
  protected function _renderHorizontalAxisSettings() {
127
  self::_renderGroupStart( esc_html__( 'Horizontal Axis Settings', Visualizer_Plugin::NAME ) );
128
  self::_renderSectionStart( esc_html__( 'General Settings', Visualizer_Plugin::NAME ), false );
129
- self::_renderTextItem(
130
- esc_html__( 'Axis Title', Visualizer_Plugin::NAME ),
131
- 'hAxis[title]',
132
- isset( $this->hAxis['title'] ) ? $this->hAxis['title'] : '',
133
- esc_html__( 'The title of the horizontal axis.', Visualizer_Plugin::NAME )
134
- );
135
-
136
- self::_renderSelectItem(
137
- esc_html__( 'Text Position', Visualizer_Plugin::NAME ),
138
- 'vAxis[textPosition]',
139
- isset( $this->vAxis['textPosition'] ) ? $this->vAxis['textPosition'] : '',
140
- $this->_positions,
141
- esc_html__( 'Position of the horizontal axis text, relative to the chart area.', Visualizer_Plugin::NAME )
142
- );
143
-
144
- self::_renderSelectItem(
145
- esc_html__( 'Direction', Visualizer_Plugin::NAME ),
146
- 'hAxis[direction]',
147
- isset( $this->hAxis['direction'] ) ? $this->hAxis['direction'] : '',
148
- array(
149
- '' => '',
150
- '1' => esc_html__( 'Identical Direction', Visualizer_Plugin::NAME ),
151
- '-1' => esc_html__( 'Reverse Direction', Visualizer_Plugin::NAME ),
152
- ),
153
- esc_html__( 'The direction in which the values along the horizontal axis grow.', Visualizer_Plugin::NAME )
154
- );
155
-
156
- self::_renderColorPickerItem(
157
- esc_html__( 'Base Line Color', Visualizer_Plugin::NAME ),
158
- 'vAxis[baselineColor]',
159
- isset( $this->vAxis['baselineColor'] ) ? $this->vAxis['baselineColor'] : null,
160
- '#000'
161
- );
162
  self::_renderSectionEnd();
163
 
164
  if ( $this->_horizontalGridLines ) {
@@ -217,6 +238,49 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
217
  self::_renderGroupEnd();
218
  }
219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  /**
221
  * Renders vertical axis settings.
222
  *
@@ -227,39 +291,7 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
227
  protected function _renderVerticalAxisSettings() {
228
  self::_renderGroupStart( esc_html__( 'Vertical Axis Settings', Visualizer_Plugin::NAME ) );
229
  self::_renderSectionStart( esc_html__( 'General Settings', Visualizer_Plugin::NAME ), false );
230
- self::_renderTextItem(
231
- esc_html__( 'Axis Title', Visualizer_Plugin::NAME ),
232
- 'vAxis[title]',
233
- isset( $this->vAxis['title'] ) ? $this->vAxis['title'] : '',
234
- esc_html__( 'The title of the vertical axis.', Visualizer_Plugin::NAME )
235
- );
236
-
237
- self::_renderSelectItem(
238
- esc_html__( 'Text Position', Visualizer_Plugin::NAME ),
239
- 'hAxis[textPosition]',
240
- isset( $this->hAxis['textPosition'] ) ? $this->hAxis['textPosition'] : '',
241
- $this->_positions,
242
- esc_html__( 'Position of the vertical axis text, relative to the chart area.', Visualizer_Plugin::NAME )
243
- );
244
-
245
- self::_renderSelectItem(
246
- esc_html__( 'Direction', Visualizer_Plugin::NAME ),
247
- 'vAxis[direction]',
248
- isset( $this->vAxis['direction'] ) ? $this->vAxis['direction'] : '',
249
- array(
250
- '' => '',
251
- '1' => esc_html__( 'Identical Direction', Visualizer_Plugin::NAME ),
252
- '-1' => esc_html__( 'Reverse Direction', Visualizer_Plugin::NAME ),
253
- ),
254
- esc_html__( 'The direction in which the values along the vertical axis grow.', Visualizer_Plugin::NAME )
255
- );
256
-
257
- self::_renderColorPickerItem(
258
- esc_html__( 'Base Line Color', Visualizer_Plugin::NAME ),
259
- 'hAxis[baselineColor]',
260
- isset( $this->hAxis['baselineColor'] ) ? $this->hAxis['baselineColor'] : null,
261
- '#000'
262
- );
263
  self::_renderSectionEnd();
264
 
265
  if ( $this->_verticalGridLines ) {
93
  * @access protected
94
  */
95
  protected function _renderChartTitleSettings() {
96
+ self::_renderTextItem(
97
+ esc_html__( 'Chart Title', Visualizer_Plugin::NAME ),
98
+ 'title',
99
+ $this->title,
100
+ esc_html__( 'Text to display above the chart.', Visualizer_Plugin::NAME )
101
+ );
102
 
103
  self::_renderSelectItem(
104
  esc_html__( 'Chart Title Position', Visualizer_Plugin::NAME ),
108
  esc_html__( 'Where to place the chart title, compared to the chart area.', Visualizer_Plugin::NAME )
109
  );
110
 
111
+ self::_renderColorPickerItem(
112
+ esc_html__( 'Chart Title Color', Visualizer_Plugin::NAME ),
113
+ 'titleTextStyle[color]',
114
+ isset( $this->titleTextStyle['color'] ) ? $this->titleTextStyle['color'] : null,
115
+ '#000'
116
+ );
117
+
118
  echo '<div class="section-delimiter"></div>';
119
 
120
  self::_renderSelectItem(
124
  $this->_positions,
125
  esc_html__( 'Determines where to place the axis titles, compared to the chart area.', Visualizer_Plugin::NAME )
126
  );
127
+ }
128
 
129
+ /**
130
+ * Renders general settings block for horizontal axis settings.
131
+ *
132
+ * @since 1.4.0
133
+ *
134
+ * @access protected
135
+ */
136
+ protected function _renderHorizontalAxisGeneratSettings() {
137
+ self::_renderTextItem(
138
+ esc_html__( 'Axis Title', Visualizer_Plugin::NAME ),
139
+ 'hAxis[title]',
140
+ isset( $this->hAxis['title'] ) ? $this->hAxis['title'] : '',
141
+ esc_html__( 'The title of the horizontal axis.', Visualizer_Plugin::NAME )
142
+ );
143
+
144
+ self::_renderSelectItem(
145
+ esc_html__( 'Text Position', Visualizer_Plugin::NAME ),
146
+ 'vAxis[textPosition]',
147
+ isset( $this->vAxis['textPosition'] ) ? $this->vAxis['textPosition'] : '',
148
+ $this->_positions,
149
+ esc_html__( 'Position of the horizontal axis text, relative to the chart area.', Visualizer_Plugin::NAME )
150
+ );
151
+
152
+ self::_renderSelectItem(
153
+ esc_html__( 'Direction', Visualizer_Plugin::NAME ),
154
+ 'hAxis[direction]',
155
+ isset( $this->hAxis['direction'] ) ? $this->hAxis['direction'] : '',
156
+ array(
157
+ '' => '',
158
+ '1' => esc_html__( 'Identical Direction', Visualizer_Plugin::NAME ),
159
+ '-1' => esc_html__( 'Reverse Direction', Visualizer_Plugin::NAME ),
160
+ ),
161
+ esc_html__( 'The direction in which the values along the horizontal axis grow.', Visualizer_Plugin::NAME )
162
+ );
163
+
164
+ self::_renderColorPickerItem(
165
+ esc_html__( 'Base Line Color', Visualizer_Plugin::NAME ),
166
+ 'vAxis[baselineColor]',
167
+ isset( $this->vAxis['baselineColor'] ) ? $this->vAxis['baselineColor'] : null,
168
+ '#000'
169
+ );
170
  }
171
 
172
  /**
179
  protected function _renderHorizontalAxisSettings() {
180
  self::_renderGroupStart( esc_html__( 'Horizontal Axis Settings', Visualizer_Plugin::NAME ) );
181
  self::_renderSectionStart( esc_html__( 'General Settings', Visualizer_Plugin::NAME ), false );
182
+ $this->_renderHorizontalAxisGeneratSettings();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  self::_renderSectionEnd();
184
 
185
  if ( $this->_horizontalGridLines ) {
238
  self::_renderGroupEnd();
239
  }
240
 
241
+ /**
242
+ * Renders general settings block for vertical axis settings.
243
+ *
244
+ * @since 1.4.0
245
+ *
246
+ * @access protected
247
+ */
248
+ protected function _renderVerticalAxisGeneralSettings() {
249
+ self::_renderTextItem(
250
+ esc_html__( 'Axis Title', Visualizer_Plugin::NAME ),
251
+ 'vAxis[title]',
252
+ isset( $this->vAxis['title'] ) ? $this->vAxis['title'] : '',
253
+ esc_html__( 'The title of the vertical axis.', Visualizer_Plugin::NAME )
254
+ );
255
+
256
+ self::_renderSelectItem(
257
+ esc_html__( 'Text Position', Visualizer_Plugin::NAME ),
258
+ 'hAxis[textPosition]',
259
+ isset( $this->hAxis['textPosition'] ) ? $this->hAxis['textPosition'] : '',
260
+ $this->_positions,
261
+ esc_html__( 'Position of the vertical axis text, relative to the chart area.', Visualizer_Plugin::NAME )
262
+ );
263
+
264
+ self::_renderSelectItem(
265
+ esc_html__( 'Direction', Visualizer_Plugin::NAME ),
266
+ 'vAxis[direction]',
267
+ isset( $this->vAxis['direction'] ) ? $this->vAxis['direction'] : '',
268
+ array(
269
+ '' => '',
270
+ '1' => esc_html__( 'Identical Direction', Visualizer_Plugin::NAME ),
271
+ '-1' => esc_html__( 'Reverse Direction', Visualizer_Plugin::NAME ),
272
+ ),
273
+ esc_html__( 'The direction in which the values along the vertical axis grow.', Visualizer_Plugin::NAME )
274
+ );
275
+
276
+ self::_renderColorPickerItem(
277
+ esc_html__( 'Base Line Color', Visualizer_Plugin::NAME ),
278
+ 'hAxis[baselineColor]',
279
+ isset( $this->hAxis['baselineColor'] ) ? $this->hAxis['baselineColor'] : null,
280
+ '#000'
281
+ );
282
+ }
283
+
284
  /**
285
  * Renders vertical axis settings.
286
  *
291
  protected function _renderVerticalAxisSettings() {
292
  self::_renderGroupStart( esc_html__( 'Vertical Axis Settings', Visualizer_Plugin::NAME ) );
293
  self::_renderSectionStart( esc_html__( 'General Settings', Visualizer_Plugin::NAME ), false );
294
+ $this->_renderVerticalAxisGeneralSettings();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  self::_renderSectionEnd();
296
 
297
  if ( $this->_verticalGridLines ) {
classes/Visualizer/Render/Sidebar/Linear.php CHANGED
@@ -84,6 +84,63 @@ abstract class Visualizer_Render_Sidebar_Linear extends Visualizer_Render_Sideba
84
  );
85
  }
86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  /**
88
  * Renders line settings items.
89
  *
@@ -122,6 +179,8 @@ abstract class Visualizer_Render_Sidebar_Linear extends Visualizer_Render_Sideba
122
  );
123
  }
124
 
 
 
125
  if ( $this->_includeFocusTarget ) {
126
  self::_renderSelectItem(
127
  esc_html__( 'Focus Target', Visualizer_Plugin::NAME ),
@@ -135,6 +194,42 @@ abstract class Visualizer_Render_Sidebar_Linear extends Visualizer_Render_Sideba
135
  esc_html__( 'The type of the entity that receives focus on mouse hover. Also affects which entity is selected by mouse click.', Visualizer_Plugin::NAME )
136
  );
137
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  }
139
 
140
  /**
84
  );
85
  }
86
 
87
+ /**
88
+ * Renders general settings block for horizontal axis settings.
89
+ *
90
+ * @since 1.4.0
91
+ *
92
+ * @access protected
93
+ */
94
+ protected function _renderHorizontalAxisGeneratSettings() {
95
+ parent::_renderHorizontalAxisGeneratSettings();
96
+
97
+ self::_renderTextItem(
98
+ esc_html__( 'Number Format', Visualizer_Plugin::NAME ),
99
+ 'hAxis[format]',
100
+ isset( $this->hAxis['format'] ) ? $this->hAxis['format'] : '',
101
+ sprintf(
102
+ '%s<br><br>%s<br><br>%s',
103
+ esc_html__( 'Enter custom format pattern to apply to horizontal axis labels.', Visualizer_Plugin::NAME ),
104
+ sprintf(
105
+ esc_html__( 'For number axis labels, this is a subset of the decimal formatting %sICU pattern set%s. For instance, $#,###.## will display values $1,234.56 for value 1234.56. Pay attention that if you use #%% percentage format then your values will be multiplied by 100.', Visualizer_Plugin::NAME ),
106
+ '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
107
+ '</a>'
108
+ ),
109
+ sprintf(
110
+ esc_html__( 'For date axis labels, this is a subset of the date formatting %sICU date and time format%s.', Visualizer_Plugin::NAME ),
111
+ '<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
112
+ '</a>'
113
+ )
114
+ )
115
+ );
116
+ }
117
+
118
+ /**
119
+ * Renders general settings block for vertical axis settings.
120
+ *
121
+ * @since 1.4.0
122
+ *
123
+ * @access protected
124
+ */
125
+ protected function _renderVerticalAxisGeneralSettings() {
126
+ parent::_renderVerticalAxisGeneralSettings();
127
+
128
+ self::_renderTextItem(
129
+ esc_html__( 'Number Format', Visualizer_Plugin::NAME ),
130
+ 'vAxis[format]',
131
+ isset( $this->vAxis['format'] ) ? $this->vAxis['format'] : '',
132
+ sprintf(
133
+ '%s<br><br>%s',
134
+ esc_html__( 'Enter custom format pattern to apply to vertical axis labels.', Visualizer_Plugin::NAME ),
135
+ sprintf(
136
+ esc_html__( 'For number axis labels, this is a subset of the decimal formatting %sICU pattern set%s. For instance, $#,###.## will display values $1,234.56 for value 1234.56. Pay attention that if you use #%% percentage format then your values will be multiplied by 100.', Visualizer_Plugin::NAME ),
137
+ '<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
138
+ '</a>'
139
+ )
140
+ )
141
+ );
142
+ }
143
+
144
  /**
145
  * Renders line settings items.
146
  *
179
  );
180
  }
181
 
182
+ echo '<div class="section-delimiter"></div>';
183
+
184
  if ( $this->_includeFocusTarget ) {
185
  self::_renderSelectItem(
186
  esc_html__( 'Focus Target', Visualizer_Plugin::NAME ),
194
  esc_html__( 'The type of the entity that receives focus on mouse hover. Also affects which entity is selected by mouse click.', Visualizer_Plugin::NAME )
195
  );
196
  }
197
+
198
+ self::_renderSelectItem(
199
+ esc_html__( 'Selection Mode', Visualizer_Plugin::NAME ),
200
+ 'selectionMode',
201
+ $this->selectionMode,
202
+ array(
203
+ '' => '',
204
+ 'single' => esc_html__( 'Single data point', Visualizer_Plugin::NAME ),
205
+ 'multiple' => esc_html__( 'Multiple data points', Visualizer_Plugin::NAME ),
206
+ ),
207
+ esc_html__( 'Determines how many data points an user can select on a chart.', Visualizer_Plugin::NAME )
208
+ );
209
+
210
+ self::_renderSelectItem(
211
+ esc_html__( 'Aggregation Target', Visualizer_Plugin::NAME ),
212
+ 'aggregationTarget',
213
+ $this->aggregationTarget,
214
+ array(
215
+ '' => '',
216
+ 'category' => esc_html__( 'Group selected data by x-value', Visualizer_Plugin::NAME ),
217
+ 'series' => esc_html__( 'Group selected data by series', Visualizer_Plugin::NAME ),
218
+ 'auto' => esc_html__( 'Group selected data by x-value if all selections have the same x-value, and by series otherwise', Visualizer_Plugin::NAME ),
219
+ 'none' => esc_html__( 'Show only one tooltip per selection', Visualizer_Plugin::NAME ),
220
+ ),
221
+ esc_html__( 'Determines how multiple data selections are rolled up into tooltips. To make it working you need to set multiple selection mode and tooltip trigger to display it when an user selects an element.', Visualizer_Plugin::NAME )
222
+ );
223
+
224
+ echo '<div class="section-delimiter"></div>';
225
+
226
+ self::_renderTextItem(
227
+ esc_html__( 'Point Opacity', Visualizer_Plugin::NAME ),
228
+ 'dataOpacity',
229
+ $this->dataOpacity,
230
+ esc_html__( 'The transparency of data points, with 1.0 being completely opaque and 0.0 fully transparent.', Visualizer_Plugin::NAME ),
231
+ '1.0'
232
+ );
233
  }
234
 
235
  /**
classes/Visualizer/Render/Sidebar/Type/Area.php CHANGED
@@ -70,6 +70,16 @@ class Visualizer_Render_Sidebar_Type_Area extends Visualizer_Render_Sidebar_Line
70
  protected function _renderLineSettingsItems() {
71
  parent::_renderLineSettingsItems();
72
 
 
 
 
 
 
 
 
 
 
 
73
  self::_renderSelectItem(
74
  esc_html__( 'Is Stacked', Visualizer_Plugin::NAME ),
75
  'isStacked',
@@ -79,4 +89,65 @@ class Visualizer_Render_Sidebar_Type_Area extends Visualizer_Render_Sidebar_Line
79
  );
80
  }
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  }
70
  protected function _renderLineSettingsItems() {
71
  parent::_renderLineSettingsItems();
72
 
73
+ self::_renderTextItem(
74
+ esc_html__( 'Area Opacity', Visualizer_Plugin::NAME ),
75
+ 'areaOpacity',
76
+ $this->areaOpacity,
77
+ esc_html__( 'The default opacity of the colored area under an area chart series, where 0.0 is fully transparent and 1.0 is fully opaque. To specify opacity for an individual series, set the area opacity value in the series property.', Visualizer_Plugin::NAME ),
78
+ '0.3'
79
+ );
80
+
81
+ echo '<div class="section-delimiter"></div>';
82
+
83
  self::_renderSelectItem(
84
  esc_html__( 'Is Stacked', Visualizer_Plugin::NAME ),
85
  'isStacked',
89
  );
90
  }
91
 
92
+ /**
93
+ * Renders concreate series settings.
94
+ *
95
+ * @since 1.4.0
96
+ *
97
+ * @access protected
98
+ * @param int $index The series index.
99
+ */
100
+ protected function _renderSeries( $index ) {
101
+ self::_renderSelectItem(
102
+ esc_html__( 'Visible In Legend', Visualizer_Plugin::NAME ),
103
+ 'series[' . $index . '][visibleInLegend]',
104
+ isset( $this->series[$index]['visibleInLegend'] ) ? $this->series[$index]['visibleInLegend'] : '',
105
+ array(
106
+ '' => '',
107
+ '0' => esc_html__( 'No', Visualizer_Plugin::NAME ),
108
+ '1' => esc_html__( 'Yes', Visualizer_Plugin::NAME ),
109
+ ),
110
+ esc_html__( 'Determines whether the series has to be presented in the legend or not.', Visualizer_Plugin::NAME )
111
+ );
112
+
113
+ echo '<div class="section-item">';
114
+ echo '<a class="more-info" href="javascript:;">[?]</a>';
115
+ echo '<b>', esc_html__( 'Line Width And Point Size', Visualizer_Plugin::NAME ), '</b>';
116
+
117
+ echo '<table class="section-table" cellspacing="0" cellpadding="0" border="0">';
118
+ echo '<tr>';
119
+ echo '<td class="section-table-column">';
120
+ $line_width = isset( $this->series[$index]['lineWidth'] ) ? $this->series[$index]['lineWidth'] : '';
121
+ echo '<input type="text" name="series[', $index, '][lineWidth]" class="control-text" value="', esc_attr( $line_width ), '" placeholder="2">';
122
+ echo '</td>';
123
+ echo '<td class="section-table-column">';
124
+ $point_size = isset( $this->series[$index]['pointSize'] ) ? $this->series[$index]['pointSize'] : '';
125
+ echo '<input type="text" name="series[', $index, '][pointSize]" class="control-text" value="', esc_attr( $point_size ), '" placeholder="0">';
126
+ echo '</td>';
127
+ echo '</tr>';
128
+ echo '</table>';
129
+
130
+ echo '<p class="section-description">';
131
+ esc_html_e( 'Overrides the global line width and point size values for this series.', Visualizer_Plugin::NAME );
132
+ echo '</p>';
133
+ echo '</div>';
134
+
135
+ $this->_renderFormatField( $index );
136
+
137
+ self::_renderTextItem(
138
+ esc_html__( 'Area Opacity', Visualizer_Plugin::NAME ),
139
+ 'series[' . $index . '][areaOpacity]',
140
+ isset( $this->series[$index]['areaOpacity'] ) ? $this->series[$index]['areaOpacity'] : null,
141
+ esc_html__( 'The opacity of the colored area, where 0.0 is fully transparent and 1.0 is fully opaque.', Visualizer_Plugin::NAME ),
142
+ '0.3'
143
+ );
144
+
145
+ self::_renderColorPickerItem(
146
+ esc_html__( 'Color', Visualizer_Plugin::NAME ),
147
+ 'series[' . $index . '][color]',
148
+ isset( $this->series[$index]['color'] ) ? $this->series[$index]['color'] : null,
149
+ null
150
+ );
151
+ }
152
+
153
  }
classes/Visualizer/Render/Sidebar/Type/Candlestick.php CHANGED
@@ -68,6 +68,34 @@ class Visualizer_Render_Sidebar_Type_Candlestick extends Visualizer_Render_Sideb
68
  ),
69
  esc_html__( 'The type of the entity that receives focus on mouse hover. Also affects which entity is selected by mouse click.', Visualizer_Plugin::NAME )
70
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  self::_renderSectionEnd();
72
 
73
  self::_renderSectionStart( esc_html__( 'Failing Candles', Visualizer_Plugin::NAME ), false );
68
  ),
69
  esc_html__( 'The type of the entity that receives focus on mouse hover. Also affects which entity is selected by mouse click.', Visualizer_Plugin::NAME )
70
  );
71
+
72
+ echo '<div class="section-delimiter"></div>';
73
+
74
+ self::_renderSelectItem(
75
+ esc_html__( 'Selection Mode', Visualizer_Plugin::NAME ),
76
+ 'selectionMode',
77
+ $this->selectionMode,
78
+ array(
79
+ '' => '',
80
+ 'single' => esc_html__( 'Single data point', Visualizer_Plugin::NAME ),
81
+ 'multiple' => esc_html__( 'Multiple data points', Visualizer_Plugin::NAME ),
82
+ ),
83
+ esc_html__( 'Determines how many data points an user can select on a chart.', Visualizer_Plugin::NAME )
84
+ );
85
+
86
+ self::_renderSelectItem(
87
+ esc_html__( 'Aggregation Target', Visualizer_Plugin::NAME ),
88
+ 'aggregationTarget',
89
+ $this->aggregationTarget,
90
+ array(
91
+ '' => '',
92
+ 'category' => esc_html__( 'Group selected data by x-value', Visualizer_Plugin::NAME ),
93
+ 'series' => esc_html__( 'Group selected data by series', Visualizer_Plugin::NAME ),
94
+ 'auto' => esc_html__( 'Group selected data by x-value if all selections have the same x-value, and by series otherwise', Visualizer_Plugin::NAME ),
95
+ 'none' => esc_html__( 'Show only one tooltip per selection', Visualizer_Plugin::NAME ),
96
+ ),
97
+ esc_html__( 'Determines how multiple data selections are rolled up into tooltips. To make it working you need to set multiple selection mode and tooltip trigger to display it when an user selects an element.', Visualizer_Plugin::NAME )
98
+ );
99
  self::_renderSectionEnd();
100
 
101
  self::_renderSectionStart( esc_html__( 'Failing Candles', Visualizer_Plugin::NAME ), false );
classes/Visualizer/Render/Sidebar/Type/Geo.php CHANGED
@@ -125,9 +125,33 @@ class Visualizer_Render_Sidebar_Type_Geo extends Visualizer_Render_Sidebar {
125
  ''
126
  );
127
  self::_renderSectionEnd();
 
 
 
128
  self::_renderGroupEnd();
129
  }
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  /**
132
  * Renders color axis settings group.
133
  *
125
  ''
126
  );
127
  self::_renderSectionEnd();
128
+ self::_renderSectionStart( esc_html__( 'Tooltip', Visualizer_Plugin::NAME ), false );
129
+ $this->_renderTooltipSettigns();
130
+ self::_renderSectionEnd();
131
  self::_renderGroupEnd();
132
  }
133
 
134
+ /**
135
+ * Renders tooltip settings section.
136
+ *
137
+ * @since 1.4.0
138
+ *
139
+ * @access protected
140
+ */
141
+ protected function _renderTooltipSettigns() {
142
+ self::_renderSelectItem(
143
+ esc_html__( 'Trigger', Visualizer_Plugin::NAME ),
144
+ 'tooltip[trigger]',
145
+ isset( $this->tooltip['trigger'] ) ? $this->tooltip['trigger'] : null,
146
+ array(
147
+ '' => '',
148
+ 'focus' => esc_html__( 'The tooltip will be displayed when the user hovers over an element', Visualizer_Plugin::NAME ),
149
+ 'none' => esc_html__( 'The tooltip will not be displayed', Visualizer_Plugin::NAME ),
150
+ ),
151
+ esc_html__( 'Determines the user interaction that causes the tooltip to be displayed.', Visualizer_Plugin::NAME )
152
+ );
153
+ }
154
+
155
  /**
156
  * Renders color axis settings group.
157
  *
classes/Visualizer/Render/Sidebar/Type/Line.php CHANGED
@@ -47,4 +47,25 @@ class Visualizer_Render_Sidebar_Type_Line extends Visualizer_Render_Sidebar_Line
47
  $this->_renderViewSettings();
48
  }
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  }
47
  $this->_renderViewSettings();
48
  }
49
 
50
+ /**
51
+ * Renders line settings items.
52
+ *
53
+ * @since 1.4.0
54
+ *
55
+ * @access protected
56
+ */
57
+ protected function _renderLineSettingsItems() {
58
+ parent::_renderLineSettingsItems();
59
+
60
+ echo '<div class="section-delimiter"></div>';
61
+
62
+ self::_renderSelectItem(
63
+ esc_html__( 'Interpolate Nulls', Visualizer_Plugin::NAME ),
64
+ 'interpolateNulls',
65
+ $this->interpolateNulls,
66
+ $this->_yesno,
67
+ esc_html__( 'Whether to guess the value of missing points. If yes, it will guess the value of any missing data based on neighboring points. If no, it will leave a break in the line at the unknown point.', Visualizer_Plugin::NAME )
68
+ );
69
+ }
70
+
71
  }
classes/Visualizer/Render/Sidebar/Type/Pie.php CHANGED
@@ -87,7 +87,21 @@ class Visualizer_Render_Sidebar_Type_Pie extends Visualizer_Render_Sidebar {
87
  esc_html__( 'The content of the text displayed on the slice.', Visualizer_Plugin::NAME )
88
  );
89
 
90
- $this->_renderFormatField();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
 
92
  self::_renderColorPickerItem(
93
  esc_html__( 'Slice Border Color', Visualizer_Plugin::NAME ),
@@ -143,18 +157,50 @@ class Visualizer_Render_Sidebar_Type_Pie extends Visualizer_Render_Sidebar {
143
  * @access protected
144
  */
145
  protected function _renderSlicesSettings() {
146
- self::_renderGroupStart( esc_html__( 'Slices Colors', Visualizer_Plugin::NAME ) );
147
- self::_renderSectionStart();
148
- for ( $i = 0, $cnt = count( $this->__data ); $i < $cnt; $i++ ) {
 
 
 
 
 
 
 
 
149
  self::_renderColorPickerItem(
150
- $this->__data[$i][0],
151
  'slices[' . $i . '][color]',
152
  isset( $this->slices[$i]['color'] ) ? $this->slices[$i]['color'] : null,
153
  null
154
  );
155
- }
156
- self::_renderSectionEnd();
157
  self::_renderGroupEnd();
158
  }
159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  }
87
  esc_html__( 'The content of the text displayed on the slice.', Visualizer_Plugin::NAME )
88
  );
89
 
90
+ self::_renderTextItem(
91
+ esc_html__( 'Pie Hole', Visualizer_Plugin::NAME ),
92
+ 'pieHole',
93
+ $this->pieHole,
94
+ esc_html__( 'If between 0 and 1, displays a donut chart. The hole with have a radius equal to number times the radius of the chart. Only applicable when the chart is two-dimensional.', Visualizer_Plugin::NAME ),
95
+ '0.0'
96
+ );
97
+
98
+ self::_renderTextItem(
99
+ esc_html__( 'Start Angle', Visualizer_Plugin::NAME ),
100
+ 'pieStartAngle',
101
+ $this->pieStartAngle,
102
+ esc_html__( 'The angle, in degrees, to rotate the chart by. The default of 0 will orient the leftmost edge of the first slice directly up.', Visualizer_Plugin::NAME ),
103
+ 0
104
+ );
105
 
106
  self::_renderColorPickerItem(
107
  esc_html__( 'Slice Border Color', Visualizer_Plugin::NAME ),
157
  * @access protected
158
  */
159
  protected function _renderSlicesSettings() {
160
+ self::_renderGroupStart( esc_html__( 'Slices Settings', Visualizer_Plugin::NAME ) );
161
+ for ( $i = 0, $cnt = count( $this->__data ); $i < $cnt; $i++ ) {
162
+ self::_renderSectionStart( esc_html( $this->__data[$i][0] ), false );
163
+ self::_renderTextItem(
164
+ esc_html__( 'Slice Offset', Visualizer_Plugin::NAME ),
165
+ 'slices[' . $i . '][offset]',
166
+ isset( $this->slices[$i]['color'] ) ? $this->slices[$i]['color'] : null,
167
+ esc_html__( "How far to separate the slice from the rest of the pie, from 0.0 (not at all) to 1.0 (the pie's radius).", Visualizer_Plugin::NAME ),
168
+ '0.0'
169
+ );
170
+
171
  self::_renderColorPickerItem(
172
+ esc_html__( 'Slice Color', Visualizer_Plugin::NAME ),
173
  'slices[' . $i . '][color]',
174
  isset( $this->slices[$i]['color'] ) ? $this->slices[$i]['color'] : null,
175
  null
176
  );
177
+ self::_renderSectionEnd();
178
+ }
179
  self::_renderGroupEnd();
180
  }
181
 
182
+ /**
183
+ * Renders tooltip settings section.
184
+ *
185
+ * @since 1.4.0
186
+ *
187
+ * @access protected
188
+ */
189
+ protected function _renderTooltipSettigns() {
190
+ parent::_renderTooltipSettigns();
191
+
192
+ self::_renderSelectItem(
193
+ esc_html__( 'Text', Visualizer_Plugin::NAME ),
194
+ 'tooltip[text]',
195
+ isset( $this->tooltip['text'] ) ? $this->tooltip['text'] : null,
196
+ array(
197
+ '' => '',
198
+ 'both' => esc_html__( 'Display both the absolute value of the slice and the percentage of the whole', Visualizer_Plugin::NAME ),
199
+ 'value' => esc_html__( 'Display only the absolute value of the slice', Visualizer_Plugin::NAME ),
200
+ 'percentage' => esc_html__( 'Display only the percentage of the whole represented by the slice', Visualizer_Plugin::NAME ),
201
+ ),
202
+ esc_html__( 'Determines what information to display when the user hovers over a pie slice.', Visualizer_Plugin::NAME )
203
+ );
204
+ }
205
+
206
  }
css/frame.css CHANGED
@@ -6,6 +6,7 @@
6
  left: 0;
7
  z-index: 75;
8
  overflow: auto;
 
9
  }
10
 
11
  #canvas {
6
  left: 0;
7
  z-index: 75;
8
  overflow: auto;
9
+ background-color: white;
10
  }
11
 
12
  #canvas {
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WordPress Visualizer
4
  Plugin URI: https://github.com/madpixelslabs/visualizer
5
  Description: A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages. The plugin uses Google Visualization API to render charts, which supports cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
6
- Version: 1.3.0.2
7
  Author: Madpixels
8
  Author URI: http://madpixels.net
9
  License: GPL v2.0 or later
3
  Plugin Name: WordPress Visualizer
4
  Plugin URI: https://github.com/madpixelslabs/visualizer
5
  Description: A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages. The plugin uses Google Visualization API to render charts, which supports cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
6
+ Version: 1.4
7
  Author: Madpixels
8
  Author URI: http://madpixels.net
9
  License: GPL v2.0 or later
languages/visualizer-en_US.mo CHANGED
Binary file
languages/visualizer-en_US.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Visualizer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-13 19:27+0300\n"
6
- "PO-Revision-Date: 2013-10-13 19:27+0300\n"
7
  "Last-Translator: Eugene Manuilov <eugene@manuilov.org>\n"
8
  "Language-Team: Eugene Manuilov <eugene@manuilov.org>\n"
9
  "Language: en_US\n"
@@ -11,7 +11,10 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Basepath: ./../\n"
14
- "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__;esc_attr_e;esc_attr__\n"
 
 
 
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: classes/Visualizer\n"
@@ -50,79 +53,145 @@ msgid "Aligned to the end of the allocated area"
50
  msgstr "Aligned to the end of the allocated area"
51
 
52
  #: classes/Visualizer/Render/Sidebar.php:117
53
- #: classes/Visualizer/Render/Sidebar/Linear.php:171
54
- #: classes/Visualizer/Render/Sidebar/Graph.php:368
55
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:139
 
56
  msgid "Yes"
57
  msgstr "Yes"
58
 
59
  #: classes/Visualizer/Render/Sidebar.php:118
60
- #: classes/Visualizer/Render/Sidebar/Linear.php:170
61
- #: classes/Visualizer/Render/Sidebar/Graph.php:367
62
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:138
 
63
  msgid "No"
64
  msgstr "No"
65
 
66
  #: classes/Visualizer/Render/Sidebar.php:131
 
67
  msgid "Chart Title"
68
  msgstr "Chart Title"
69
 
70
  #: classes/Visualizer/Render/Sidebar.php:134
 
71
  msgid "Text to display above the chart."
72
  msgstr "Text to display above the chart."
73
 
74
- #: classes/Visualizer/Render/Sidebar.php:146
75
- #: classes/Visualizer/Render/Sidebar/Graph.php:128
76
- #: classes/Visualizer/Render/Sidebar/Graph.php:229
 
 
 
 
 
77
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:58
78
  msgid "General Settings"
79
  msgstr "General Settings"
80
 
81
- #: classes/Visualizer/Render/Sidebar.php:148
82
  msgid ""
83
- "Configure title, font styles and legend positioning settings for the chart."
 
84
  msgstr ""
85
- "Configure title, font styles and legend positioning settings for the chart."
 
 
 
 
 
86
 
87
- #: classes/Visualizer/Render/Sidebar.php:154
88
- msgid "Font Family And Size"
89
- msgstr "Font Family And Size"
90
 
91
- #: classes/Visualizer/Render/Sidebar.php:180
 
 
 
 
92
  msgid "The default font family and size for all text in the chart."
93
  msgstr "The default font family and size for all text in the chart."
94
 
95
- #: classes/Visualizer/Render/Sidebar.php:185
96
  msgid "Legend"
97
  msgstr "Legend"
98
 
99
- #: classes/Visualizer/Render/Sidebar.php:187
100
  msgid "Position"
101
  msgstr "Position"
102
 
103
- #: classes/Visualizer/Render/Sidebar.php:191
104
  msgid "Determines where to place the legend, compared to the chart area."
105
  msgstr "Determines where to place the legend, compared to the chart area."
106
 
107
- #: classes/Visualizer/Render/Sidebar.php:195
108
  msgid "Alignment"
109
  msgstr "Alignment"
110
 
111
- #: classes/Visualizer/Render/Sidebar.php:199
112
  msgid "Determines the alignment of the legend."
113
  msgstr "Determines the alignment of the legend."
114
 
115
- #: classes/Visualizer/Render/Sidebar.php:213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:229
117
  msgid "Layout & Chart Area"
118
  msgstr "Layout & Chart Area"
119
 
120
- #: classes/Visualizer/Render/Sidebar.php:214
121
  msgid "Layout"
122
  msgstr "Layout"
123
 
124
- #: classes/Visualizer/Render/Sidebar.php:215
125
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:302
126
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:231
127
  msgid ""
128
  "Configure the total size of the chart. Two formats are supported: a number, "
@@ -133,20 +202,20 @@ msgstr ""
133
  "or a number followed by %. A simple number is a value in pixels; a number "
134
  "followed by % is a percentage."
135
 
136
- #: classes/Visualizer/Render/Sidebar.php:219
137
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:306
138
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:235
139
  msgid "Width And Height Of Chart"
140
  msgstr "Width And Height Of Chart"
141
 
142
- #: classes/Visualizer/Render/Sidebar.php:233
143
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:320
144
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:249
145
  msgid "Determines the total width and height of the chart."
146
  msgstr "Determines the total width and height of the chart."
147
 
148
- #: classes/Visualizer/Render/Sidebar.php:239
149
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:335
150
  msgid ""
151
  "Configure the background color for the main area of the chart and the chart "
152
  "border width and color."
@@ -154,39 +223,39 @@ msgstr ""
154
  "Configure the background color for the main area of the chart and the chart "
155
  "border width and color."
156
 
157
- #: classes/Visualizer/Render/Sidebar.php:242
158
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:338
159
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:75
160
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:99
161
  msgid "Stroke Width"
162
  msgstr "Stroke Width"
163
 
164
- #: classes/Visualizer/Render/Sidebar.php:245
165
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:341
166
  msgid "The chart border width in pixels."
167
  msgstr "The chart border width in pixels."
168
 
169
- #: classes/Visualizer/Render/Sidebar.php:250
170
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:346
171
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:83
172
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:107
173
  msgid "Stroke Color"
174
  msgstr "Stroke Color"
175
 
176
- #: classes/Visualizer/Render/Sidebar.php:258
177
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:353
178
  msgid "Background Color"
179
  msgstr "Background Color"
180
 
181
- #: classes/Visualizer/Render/Sidebar.php:267
182
  msgid "Transparent background"
183
  msgstr "Transparent background"
184
 
185
- #: classes/Visualizer/Render/Sidebar.php:272
186
  msgid "Chart Area"
187
  msgstr "Chart Area"
188
 
189
- #: classes/Visualizer/Render/Sidebar.php:273
190
  msgid ""
191
  "Configure the placement and size of the chart area (where the chart itself "
192
  "is drawn, excluding axis and legends). Two formats are supported: a number, "
@@ -198,31 +267,33 @@ msgstr ""
198
  "or a number followed by %. A simple number is a value in pixels; a number "
199
  "followed by % is a percentage."
200
 
201
- #: classes/Visualizer/Render/Sidebar.php:277
202
  msgid "Left And Top Margins"
203
  msgstr "Left And Top Margins"
204
 
205
- #: classes/Visualizer/Render/Sidebar.php:291
206
  msgid "Determines how far to draw the chart from the left and top borders."
207
  msgstr "Determines how far to draw the chart from the left and top borders."
208
 
209
- #: classes/Visualizer/Render/Sidebar.php:297
210
  msgid "Width And Height Of Chart Area"
211
  msgstr "Width And Height Of Chart Area"
212
 
213
- #: classes/Visualizer/Render/Sidebar.php:311
214
  msgid "Determines the width and hight of the chart area."
215
  msgstr "Determines the width and hight of the chart area."
216
 
217
- #: classes/Visualizer/Render/Sidebar.php:362
218
  msgid "Hex Value"
219
  msgstr "Hex Value"
220
 
221
- #: classes/Visualizer/Render/Sidebar.php:475
 
 
222
  msgid "Number Format"
223
  msgstr "Number Format"
224
 
225
- #: classes/Visualizer/Render/Sidebar.php:478
226
  #, php-format
227
  msgid ""
228
  "Enter custom format pattern to apply to this series value, similar to the "
@@ -235,11 +306,11 @@ msgstr ""
235
  "to add dollar sign before digits. Pay attention that if you use #%% "
236
  "percentage format then your values will be multiplied by 100."
237
 
238
- #: classes/Visualizer/Render/Sidebar.php:486
239
  msgid "Date Format"
240
  msgstr "Date Format"
241
 
242
- #: classes/Visualizer/Render/Sidebar.php:489
243
  #, php-format
244
  msgid ""
245
  "Enter custom format pattern to apply to this series value, similar to the "
@@ -300,12 +371,44 @@ msgstr "Straight line without curve"
300
  msgid "The angles of the line will be smoothed"
301
  msgstr "The angles of the line will be smoothed"
302
 
303
- #: classes/Visualizer/Render/Sidebar/Linear.php:97
304
- #: classes/Visualizer/Render/Sidebar/Linear.php:178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  msgid "Line Width And Point Size"
306
  msgstr "Line Width And Point Size"
307
 
308
- #: classes/Visualizer/Render/Sidebar/Linear.php:111
309
  msgid ""
310
  "Data line width and diameter of displayed points in pixels. Use zero to hide "
311
  "all lines or points."
@@ -313,36 +416,41 @@ msgstr ""
313
  "Data line width and diameter of displayed points in pixels. Use zero to hide "
314
  "all lines or points."
315
 
316
- #: classes/Visualizer/Render/Sidebar/Linear.php:117
317
- #: classes/Visualizer/Render/Sidebar/Linear.php:202
318
  msgid "Curve Type"
319
  msgstr "Curve Type"
320
 
321
- #: classes/Visualizer/Render/Sidebar/Linear.php:121
322
- #: classes/Visualizer/Render/Sidebar/Linear.php:173
323
- #: classes/Visualizer/Render/Sidebar/Linear.php:206
324
- #: classes/Visualizer/Render/Sidebar/Graph.php:370
325
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:141
 
326
  msgid "Determines whether the series has to be presented in the legend or not."
327
  msgstr ""
328
  "Determines whether the series has to be presented in the legend or not."
329
 
330
- #: classes/Visualizer/Render/Sidebar/Linear.php:127
 
331
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:61
332
  msgid "Focus Target"
333
  msgstr "Focus Target"
334
 
335
- #: classes/Visualizer/Render/Sidebar/Linear.php:132
 
336
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:66
337
  msgid "Focus on a single data point."
338
  msgstr "Focus on a single data point."
339
 
340
- #: classes/Visualizer/Render/Sidebar/Linear.php:133
 
341
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:67
342
  msgid "Focus on a grouping of all data points along the major axis."
343
  msgstr "Focus on a grouping of all data points along the major axis."
344
 
345
- #: classes/Visualizer/Render/Sidebar/Linear.php:135
 
346
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:69
347
  msgid ""
348
  "The type of the entity that receives focus on mouse hover. Also affects "
@@ -351,27 +459,102 @@ msgstr ""
351
  "The type of the entity that receives focus on mouse hover. Also affects "
352
  "which entity is selected by mouse click."
353
 
354
- #: classes/Visualizer/Render/Sidebar/Linear.php:148
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  msgid "Lines Settings"
356
  msgstr "Lines Settings"
357
 
358
- #: classes/Visualizer/Render/Sidebar/Linear.php:165
359
- #: classes/Visualizer/Render/Sidebar/Graph.php:362
360
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:133
 
361
  msgid "Visible In Legend"
362
  msgstr "Visible In Legend"
363
 
364
- #: classes/Visualizer/Render/Sidebar/Linear.php:194
 
365
  msgid "Overrides the global line width and point size values for this series."
366
  msgstr "Overrides the global line width and point size values for this series."
367
 
368
- #: classes/Visualizer/Render/Sidebar/Linear.php:211
369
- #: classes/Visualizer/Render/Sidebar/Graph.php:175
370
- #: classes/Visualizer/Render/Sidebar/Graph.php:192
371
- #: classes/Visualizer/Render/Sidebar/Graph.php:276
372
- #: classes/Visualizer/Render/Sidebar/Graph.php:293
373
- #: classes/Visualizer/Render/Sidebar/Graph.php:376
374
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:145
 
375
  msgid "Color"
376
  msgstr "Color"
377
 
@@ -379,16 +562,28 @@ msgstr "Color"
379
  msgid "Bars Settings"
380
  msgstr "Bars Settings"
381
 
382
- #: classes/Visualizer/Render/Sidebar/Columnar.php:47
383
- #: classes/Visualizer/Render/Sidebar/Type/Area.php:74
384
  msgid "Is Stacked"
385
  msgstr "Is Stacked"
386
 
387
- #: classes/Visualizer/Render/Sidebar/Columnar.php:51
388
- #: classes/Visualizer/Render/Sidebar/Type/Area.php:78
389
  msgid "If set to yes, series elements are stacked."
390
  msgstr "If set to yes, series elements are stacked."
391
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  #: classes/Visualizer/Render/Sidebar/Graph.php:83
393
  msgid "Outside the chart"
394
  msgstr "Outside the chart"
@@ -397,81 +592,81 @@ msgstr "Outside the chart"
397
  msgid "None"
398
  msgstr "None"
399
 
400
- #: classes/Visualizer/Render/Sidebar/Graph.php:99
401
  msgid "Chart Title Position"
402
  msgstr "Chart Title Position"
403
 
404
- #: classes/Visualizer/Render/Sidebar/Graph.php:103
405
  msgid "Where to place the chart title, compared to the chart area."
406
  msgstr "Where to place the chart title, compared to the chart area."
407
 
408
- #: classes/Visualizer/Render/Sidebar/Graph.php:109
409
  msgid "Axes Titles Position"
410
  msgstr "Axes Titles Position"
411
 
412
- #: classes/Visualizer/Render/Sidebar/Graph.php:113
413
  msgid "Determines where to place the axis titles, compared to the chart area."
414
  msgstr "Determines where to place the axis titles, compared to the chart area."
415
 
416
- #: classes/Visualizer/Render/Sidebar/Graph.php:127
417
- msgid "Horizontal Axis Settings"
418
- msgstr "Horizontal Axis Settings"
419
-
420
- #: classes/Visualizer/Render/Sidebar/Graph.php:130
421
- #: classes/Visualizer/Render/Sidebar/Graph.php:231
422
  msgid "Axis Title"
423
  msgstr "Axis Title"
424
 
425
- #: classes/Visualizer/Render/Sidebar/Graph.php:133
426
  msgid "The title of the horizontal axis."
427
  msgstr "The title of the horizontal axis."
428
 
429
- #: classes/Visualizer/Render/Sidebar/Graph.php:137
430
- #: classes/Visualizer/Render/Sidebar/Graph.php:238
431
  msgid "Text Position"
432
  msgstr "Text Position"
433
 
434
- #: classes/Visualizer/Render/Sidebar/Graph.php:141
435
  msgid "Position of the horizontal axis text, relative to the chart area."
436
  msgstr "Position of the horizontal axis text, relative to the chart area."
437
 
438
- #: classes/Visualizer/Render/Sidebar/Graph.php:145
439
- #: classes/Visualizer/Render/Sidebar/Graph.php:246
440
  msgid "Direction"
441
  msgstr "Direction"
442
 
443
- #: classes/Visualizer/Render/Sidebar/Graph.php:150
444
- #: classes/Visualizer/Render/Sidebar/Graph.php:251
445
  msgid "Identical Direction"
446
  msgstr "Identical Direction"
447
 
448
- #: classes/Visualizer/Render/Sidebar/Graph.php:151
449
- #: classes/Visualizer/Render/Sidebar/Graph.php:252
450
  msgid "Reverse Direction"
451
  msgstr "Reverse Direction"
452
 
453
- #: classes/Visualizer/Render/Sidebar/Graph.php:153
454
  msgid "The direction in which the values along the horizontal axis grow."
455
  msgstr "The direction in which the values along the horizontal axis grow."
456
 
457
- #: classes/Visualizer/Render/Sidebar/Graph.php:157
458
- #: classes/Visualizer/Render/Sidebar/Graph.php:258
459
  msgid "Base Line Color"
460
  msgstr "Base Line Color"
461
 
462
- #: classes/Visualizer/Render/Sidebar/Graph.php:165
463
- #: classes/Visualizer/Render/Sidebar/Graph.php:266
 
 
 
 
464
  msgid "Grid Lines"
465
  msgstr "Grid Lines"
466
 
467
- #: classes/Visualizer/Render/Sidebar/Graph.php:167
468
- #: classes/Visualizer/Render/Sidebar/Graph.php:184
469
- #: classes/Visualizer/Render/Sidebar/Graph.php:268
470
- #: classes/Visualizer/Render/Sidebar/Graph.php:285
471
  msgid "Count"
472
  msgstr "Count"
473
 
474
- #: classes/Visualizer/Render/Sidebar/Graph.php:170
475
  msgid ""
476
  "The number of horizontal gridlines inside the chart area. Minimum value is "
477
  "2. Specify -1 to automatically compute the number of gridlines."
@@ -479,50 +674,50 @@ msgstr ""
479
  "The number of horizontal gridlines inside the chart area. Minimum value is "
480
  "2. Specify -1 to automatically compute the number of gridlines."
481
 
482
- #: classes/Visualizer/Render/Sidebar/Graph.php:182
483
- #: classes/Visualizer/Render/Sidebar/Graph.php:283
484
  msgid "Minor Grid Lines"
485
  msgstr "Minor Grid Lines"
486
 
487
- #: classes/Visualizer/Render/Sidebar/Graph.php:187
488
  msgid "The number of horizontal minor gridlines between two regular gridlines."
489
  msgstr ""
490
  "The number of horizontal minor gridlines between two regular gridlines."
491
 
492
- #: classes/Visualizer/Render/Sidebar/Graph.php:201
493
- #: classes/Visualizer/Render/Sidebar/Graph.php:302
494
  msgid "View Window"
495
  msgstr "View Window"
496
 
497
- #: classes/Visualizer/Render/Sidebar/Graph.php:203
498
- #: classes/Visualizer/Render/Sidebar/Graph.php:304
499
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:178
500
  msgid "Maximum Value"
501
  msgstr "Maximum Value"
502
 
503
- #: classes/Visualizer/Render/Sidebar/Graph.php:210
504
- #: classes/Visualizer/Render/Sidebar/Graph.php:311
505
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:164
506
  msgid "Minimum Value"
507
  msgstr "Minimum Value"
508
 
509
- #: classes/Visualizer/Render/Sidebar/Graph.php:228
510
- msgid "Vertical Axis Settings"
511
- msgstr "Vertical Axis Settings"
512
-
513
- #: classes/Visualizer/Render/Sidebar/Graph.php:234
514
  msgid "The title of the vertical axis."
515
  msgstr "The title of the vertical axis."
516
 
517
- #: classes/Visualizer/Render/Sidebar/Graph.php:242
518
  msgid "Position of the vertical axis text, relative to the chart area."
519
  msgstr "Position of the vertical axis text, relative to the chart area."
520
 
521
- #: classes/Visualizer/Render/Sidebar/Graph.php:254
522
  msgid "The direction in which the values along the vertical axis grow."
523
  msgstr "The direction in which the values along the vertical axis grow."
524
 
525
- #: classes/Visualizer/Render/Sidebar/Graph.php:271
 
 
 
 
526
  msgid ""
527
  "The number of vertical gridlines inside the chart area. Minimum value is 2. "
528
  "Specify -1 to automatically compute the number of gridlines."
@@ -530,11 +725,11 @@ msgstr ""
530
  "The number of vertical gridlines inside the chart area. Minimum value is 2. "
531
  "Specify -1 to automatically compute the number of gridlines."
532
 
533
- #: classes/Visualizer/Render/Sidebar/Graph.php:288
534
  msgid "The number of vertical minor gridlines between two regular gridlines."
535
  msgstr "The number of vertical minor gridlines between two regular gridlines."
536
 
537
- #: classes/Visualizer/Render/Sidebar/Graph.php:341
538
  msgid "Series Settings"
539
  msgstr "Series Settings"
540
 
@@ -660,11 +855,11 @@ msgstr "Regions"
660
  msgid "Markers"
661
  msgstr "Markers"
662
 
663
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:139
664
  msgid "Color Axis"
665
  msgstr "Color Axis"
666
 
667
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:141
668
  msgid ""
669
  "Configure color axis gradient scale, minimum and maximun values and a color "
670
  "of the dateless regions."
@@ -672,28 +867,28 @@ msgstr ""
672
  "Configure color axis gradient scale, minimum and maximun values and a color "
673
  "of the dateless regions."
674
 
675
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:145
676
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:209
677
  msgid "Minimum And Maximum Values"
678
  msgstr "Minimum And Maximum Values"
679
 
680
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:159
681
  msgid "Determines the minimum and maximum values of color axis."
682
  msgstr "Determines the minimum and maximum values of color axis."
683
 
684
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:171
685
  msgid "Intermediate Value"
686
  msgstr "Intermediate Value"
687
 
688
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:185
689
  msgid "Dateless Region"
690
  msgstr "Dateless Region"
691
 
692
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:203
693
  msgid "Size Axis"
694
  msgstr "Size Axis"
695
 
696
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:205
697
  msgid ""
698
  "Configure how values are associated with bubble size, minimum and maximun "
699
  "values and marker opacity setting."
@@ -701,15 +896,15 @@ msgstr ""
701
  "Configure how values are associated with bubble size, minimum and maximun "
702
  "values and marker opacity setting."
703
 
704
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:223
705
  msgid "Determines the minimum and maximum values of size axis."
706
  msgstr "Determines the minimum and maximum values of size axis."
707
 
708
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:229
709
  msgid "Minimum And Maximum Marker Radius"
710
  msgstr "Minimum And Maximum Marker Radius"
711
 
712
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:243
713
  msgid ""
714
  "Determines the radius of the smallest and largest possible bubbles, in "
715
  "pixels."
@@ -717,11 +912,11 @@ msgstr ""
717
  "Determines the radius of the smallest and largest possible bubbles, in "
718
  "pixels."
719
 
720
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:248
721
  msgid "Marker Opacity"
722
  msgstr "Marker Opacity"
723
 
724
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:251
725
  msgid ""
726
  "The opacity of the markers, where 0.0 is fully transparent and 1.0 is fully "
727
  "opaque."
@@ -729,11 +924,11 @@ msgstr ""
729
  "The opacity of the markers, where 0.0 is fully transparent and 1.0 is fully "
730
  "opaque."
731
 
732
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:269
733
  msgid "Magnifying Glass"
734
  msgstr "Magnifying Glass"
735
 
736
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:271
737
  msgid ""
738
  "Configure magnifying glass settings, which appears, when the user lingers "
739
  "over a cluttered marker. Note: this feature is not supported in browsers "
@@ -743,11 +938,11 @@ msgstr ""
743
  "over a cluttered marker. Note: this feature is not supported in browsers "
744
  "that do not support SVG, i.e. Internet Explorer version 8 or earlier."
745
 
746
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:274
747
  msgid "Enabled"
748
  msgstr "Enabled"
749
 
750
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:278
751
  msgid ""
752
  "If yes, when the user lingers over a cluttered marker, a magnifiying glass "
753
  "will be opened."
@@ -755,25 +950,25 @@ msgstr ""
755
  "If yes, when the user lingers over a cluttered marker, a magnifiying glass "
756
  "will be opened."
757
 
758
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:282
759
  msgid "Zoom Factor"
760
  msgstr "Zoom Factor"
761
 
762
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:285
763
  msgid ""
764
  "The zoom factor of the magnifying glass. Can be any number greater than 0."
765
  msgstr ""
766
  "The zoom factor of the magnifying glass. Can be any number greater than 0."
767
 
768
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:300
769
  msgid "Layout Settings"
770
  msgstr "Layout Settings"
771
 
772
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:325
773
  msgid "Keep Aspect Ratio"
774
  msgstr "Keep Aspect Ratio"
775
 
776
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:329
777
  msgid ""
778
  "If yes, the map will be drawn at the largest size that can fit inside the "
779
  "chart area at its natural aspect ratio. If only one of the width and height "
@@ -785,7 +980,7 @@ msgstr ""
785
  "options is specified, the other one will be calculated according to the "
786
  "aspect ratio."
787
 
788
- #: classes/Visualizer/Render/Sidebar/Type/Geo.php:330
789
  msgid ""
790
  "If no, the map will be stretched to the exact size of the chart as specified "
791
  "by the width and height options."
@@ -793,6 +988,29 @@ msgstr ""
793
  "If no, the map will be stretched to the exact size of the chart as specified "
794
  "by the width and height options."
795
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
796
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:63
797
  msgid "Min And Max Values"
798
  msgstr "Min And Max Values"
@@ -898,19 +1116,45 @@ msgstr "No text is displayed"
898
  msgid "The content of the text displayed on the slice."
899
  msgstr "The content of the text displayed on the slice."
900
 
901
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
902
  msgid "Slice Border Color"
903
  msgstr "Slice Border Color"
904
 
905
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:110
906
  msgid "Residue Settings"
907
  msgstr "Residue Settings"
908
 
909
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:113
910
  msgid "Visibility Threshold"
911
  msgstr "Visibility Threshold"
912
 
913
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:116
914
  msgid ""
915
  "The slice relative part, below which a slice will not show individually. All "
916
  "slices that have not passed this threshold will be combined to a single "
@@ -922,11 +1166,11 @@ msgstr ""
922
  "slice, whose size is the sum of all their sizes. Default is not to show "
923
  "individually any slice which is smaller than half a degree."
924
 
925
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:121
926
  msgid "Residue Slice Label"
927
  msgstr "Residue Slice Label"
928
 
929
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:124
930
  msgid ""
931
  "A label for the combination slice that holds all slices below slice "
932
  "visibility threshold."
@@ -934,40 +1178,94 @@ msgstr ""
934
  "A label for the combination slice that holds all slices below slice "
935
  "visibility threshold."
936
 
937
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:125
938
  msgid "Other"
939
  msgstr "Other"
940
 
941
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:129
942
  msgid "Residue Slice Color"
943
  msgstr "Residue Slice Color"
944
 
945
- #: classes/Visualizer/Render/Sidebar/Type/Pie.php:146
946
- msgid "Slices Colors"
947
- msgstr "Slices Colors"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
948
 
949
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:58
950
  msgid "Candles Settings"
951
  msgstr "Candles Settings"
952
 
953
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:73
954
  msgid "Failing Candles"
955
  msgstr "Failing Candles"
956
 
957
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:78
958
  msgid "The stroke width of falling candles."
959
  msgstr "The stroke width of falling candles."
960
 
961
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:90
962
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:114
963
  msgid "Fill Color"
964
  msgstr "Fill Color"
965
 
966
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:97
967
  msgid "Rising Candles"
968
  msgstr "Rising Candles"
969
 
970
- #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:102
971
  msgid "The stroke width of rising candles."
972
  msgstr "The stroke width of rising candles."
973
 
@@ -1076,10 +1374,6 @@ msgstr "Library"
1076
  msgid "Knowledge Base"
1077
  msgstr "Knowledge Base"
1078
 
1079
- #: classes/Visualizer/Module/Admin.php:353
1080
- msgid "Community"
1081
- msgstr "Community"
1082
-
1083
  #: classes/Visualizer/Module/Chart.php:318
1084
  msgid "Please, enter the URL of CSV file:"
1085
  msgstr "Please, enter the URL of CSV file:"
2
  msgstr ""
3
  "Project-Id-Version: Visualizer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-12-14 23:05+0300\n"
6
+ "PO-Revision-Date: 2013-12-14 23:05+0300\n"
7
  "Last-Translator: Eugene Manuilov <eugene@manuilov.org>\n"
8
  "Language-Team: Eugene Manuilov <eugene@manuilov.org>\n"
9
  "Language: en_US\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Basepath: ./../\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
+ "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
16
+ "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
17
+ "_n_noop;_nc;_nx;_nx_noop\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
  "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: classes/Visualizer\n"
53
  msgstr "Aligned to the end of the allocated area"
54
 
55
  #: classes/Visualizer/Render/Sidebar.php:117
56
+ #: classes/Visualizer/Render/Sidebar/Linear.php:266
57
+ #: classes/Visualizer/Render/Sidebar/Graph.php:400
58
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:108
59
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:167
60
  msgid "Yes"
61
  msgstr "Yes"
62
 
63
  #: classes/Visualizer/Render/Sidebar.php:118
64
+ #: classes/Visualizer/Render/Sidebar/Linear.php:265
65
+ #: classes/Visualizer/Render/Sidebar/Graph.php:399
66
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:107
67
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:166
68
  msgid "No"
69
  msgstr "No"
70
 
71
  #: classes/Visualizer/Render/Sidebar.php:131
72
+ #: classes/Visualizer/Render/Sidebar/Graph.php:97
73
  msgid "Chart Title"
74
  msgstr "Chart Title"
75
 
76
  #: classes/Visualizer/Render/Sidebar.php:134
77
+ #: classes/Visualizer/Render/Sidebar/Graph.php:100
78
  msgid "Text to display above the chart."
79
  msgstr "Text to display above the chart."
80
 
81
+ #: classes/Visualizer/Render/Sidebar.php:138
82
+ #: classes/Visualizer/Render/Sidebar/Graph.php:112
83
+ msgid "Chart Title Color"
84
+ msgstr "Chart Title Color"
85
+
86
+ #: classes/Visualizer/Render/Sidebar.php:153
87
+ #: classes/Visualizer/Render/Sidebar/Graph.php:181
88
+ #: classes/Visualizer/Render/Sidebar/Graph.php:293
89
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:58
90
  msgid "General Settings"
91
  msgstr "General Settings"
92
 
93
+ #: classes/Visualizer/Render/Sidebar.php:155
94
  msgid ""
95
+ "Configure title, font styles, tooltip, legend and else settings for the "
96
+ "chart."
97
  msgstr ""
98
+ "Configure title, font styles, tooltip, legend and else settings for the "
99
+ "chart."
100
+
101
+ #: classes/Visualizer/Render/Sidebar.php:158
102
+ msgid "Title"
103
+ msgstr "Title"
104
 
105
+ #: classes/Visualizer/Render/Sidebar.php:162
106
+ msgid "Font Styles"
107
+ msgstr "Font Styles"
108
 
109
+ #: classes/Visualizer/Render/Sidebar.php:165
110
+ msgid "Family And Size"
111
+ msgstr "Family And Size"
112
+
113
+ #: classes/Visualizer/Render/Sidebar.php:191
114
  msgid "The default font family and size for all text in the chart."
115
  msgstr "The default font family and size for all text in the chart."
116
 
117
+ #: classes/Visualizer/Render/Sidebar.php:196
118
  msgid "Legend"
119
  msgstr "Legend"
120
 
121
+ #: classes/Visualizer/Render/Sidebar.php:198
122
  msgid "Position"
123
  msgstr "Position"
124
 
125
+ #: classes/Visualizer/Render/Sidebar.php:202
126
  msgid "Determines where to place the legend, compared to the chart area."
127
  msgstr "Determines where to place the legend, compared to the chart area."
128
 
129
+ #: classes/Visualizer/Render/Sidebar.php:206
130
  msgid "Alignment"
131
  msgstr "Alignment"
132
 
133
+ #: classes/Visualizer/Render/Sidebar.php:210
134
  msgid "Determines the alignment of the legend."
135
  msgstr "Determines the alignment of the legend."
136
 
137
+ #: classes/Visualizer/Render/Sidebar.php:214
138
+ msgid "Font Color"
139
+ msgstr "Font Color"
140
+
141
+ #: classes/Visualizer/Render/Sidebar.php:221
142
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:128
143
+ msgid "Tooltip"
144
+ msgstr "Tooltip"
145
+
146
+ #: classes/Visualizer/Render/Sidebar.php:236
147
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:143
148
+ msgid "Trigger"
149
+ msgstr "Trigger"
150
+
151
+ #: classes/Visualizer/Render/Sidebar.php:241
152
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:148
153
+ msgid "The tooltip will be displayed when the user hovers over an element"
154
+ msgstr "The tooltip will be displayed when the user hovers over an element"
155
+
156
+ #: classes/Visualizer/Render/Sidebar.php:242
157
+ msgid "The tooltip will be displayed when the user selects an element"
158
+ msgstr "The tooltip will be displayed when the user selects an element"
159
+
160
+ #: classes/Visualizer/Render/Sidebar.php:243
161
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:149
162
+ msgid "The tooltip will not be displayed"
163
+ msgstr "The tooltip will not be displayed"
164
+
165
+ #: classes/Visualizer/Render/Sidebar.php:245
166
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:151
167
+ msgid ""
168
+ "Determines the user interaction that causes the tooltip to be displayed."
169
+ msgstr ""
170
+ "Determines the user interaction that causes the tooltip to be displayed."
171
+
172
+ #: classes/Visualizer/Render/Sidebar.php:249
173
+ msgid "Show Color Code"
174
+ msgstr "Show Color Code"
175
+
176
+ #: classes/Visualizer/Render/Sidebar.php:253
177
+ msgid ""
178
+ "If set to yes, will show colored squares next to the slice information in "
179
+ "the tooltip."
180
+ msgstr ""
181
+ "If set to yes, will show colored squares next to the slice information in "
182
+ "the tooltip."
183
+
184
+ #: classes/Visualizer/Render/Sidebar.php:265
185
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:229
186
  msgid "Layout & Chart Area"
187
  msgstr "Layout & Chart Area"
188
 
189
+ #: classes/Visualizer/Render/Sidebar.php:266
190
  msgid "Layout"
191
  msgstr "Layout"
192
 
193
+ #: classes/Visualizer/Render/Sidebar.php:267
194
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:326
195
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:231
196
  msgid ""
197
  "Configure the total size of the chart. Two formats are supported: a number, "
202
  "or a number followed by %. A simple number is a value in pixels; a number "
203
  "followed by % is a percentage."
204
 
205
+ #: classes/Visualizer/Render/Sidebar.php:271
206
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:330
207
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:235
208
  msgid "Width And Height Of Chart"
209
  msgstr "Width And Height Of Chart"
210
 
211
+ #: classes/Visualizer/Render/Sidebar.php:285
212
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:344
213
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:249
214
  msgid "Determines the total width and height of the chart."
215
  msgstr "Determines the total width and height of the chart."
216
 
217
+ #: classes/Visualizer/Render/Sidebar.php:291
218
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:359
219
  msgid ""
220
  "Configure the background color for the main area of the chart and the chart "
221
  "border width and color."
223
  "Configure the background color for the main area of the chart and the chart "
224
  "border width and color."
225
 
226
+ #: classes/Visualizer/Render/Sidebar.php:294
227
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:362
228
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:103
229
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:127
230
  msgid "Stroke Width"
231
  msgstr "Stroke Width"
232
 
233
+ #: classes/Visualizer/Render/Sidebar.php:297
234
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:365
235
  msgid "The chart border width in pixels."
236
  msgstr "The chart border width in pixels."
237
 
238
+ #: classes/Visualizer/Render/Sidebar.php:302
239
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:370
240
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:111
241
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:135
242
  msgid "Stroke Color"
243
  msgstr "Stroke Color"
244
 
245
+ #: classes/Visualizer/Render/Sidebar.php:310
246
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:377
247
  msgid "Background Color"
248
  msgstr "Background Color"
249
 
250
+ #: classes/Visualizer/Render/Sidebar.php:319
251
  msgid "Transparent background"
252
  msgstr "Transparent background"
253
 
254
+ #: classes/Visualizer/Render/Sidebar.php:324
255
  msgid "Chart Area"
256
  msgstr "Chart Area"
257
 
258
+ #: classes/Visualizer/Render/Sidebar.php:325
259
  msgid ""
260
  "Configure the placement and size of the chart area (where the chart itself "
261
  "is drawn, excluding axis and legends). Two formats are supported: a number, "
267
  "or a number followed by %. A simple number is a value in pixels; a number "
268
  "followed by % is a percentage."
269
 
270
+ #: classes/Visualizer/Render/Sidebar.php:329
271
  msgid "Left And Top Margins"
272
  msgstr "Left And Top Margins"
273
 
274
+ #: classes/Visualizer/Render/Sidebar.php:343
275
  msgid "Determines how far to draw the chart from the left and top borders."
276
  msgstr "Determines how far to draw the chart from the left and top borders."
277
 
278
+ #: classes/Visualizer/Render/Sidebar.php:349
279
  msgid "Width And Height Of Chart Area"
280
  msgstr "Width And Height Of Chart Area"
281
 
282
+ #: classes/Visualizer/Render/Sidebar.php:363
283
  msgid "Determines the width and hight of the chart area."
284
  msgstr "Determines the width and hight of the chart area."
285
 
286
+ #: classes/Visualizer/Render/Sidebar.php:414
287
  msgid "Hex Value"
288
  msgstr "Hex Value"
289
 
290
+ #: classes/Visualizer/Render/Sidebar.php:527
291
+ #: classes/Visualizer/Render/Sidebar/Linear.php:98
292
+ #: classes/Visualizer/Render/Sidebar/Linear.php:129
293
  msgid "Number Format"
294
  msgstr "Number Format"
295
 
296
+ #: classes/Visualizer/Render/Sidebar.php:530
297
  #, php-format
298
  msgid ""
299
  "Enter custom format pattern to apply to this series value, similar to the "
306
  "to add dollar sign before digits. Pay attention that if you use #%% "
307
  "percentage format then your values will be multiplied by 100."
308
 
309
+ #: classes/Visualizer/Render/Sidebar.php:538
310
  msgid "Date Format"
311
  msgstr "Date Format"
312
 
313
+ #: classes/Visualizer/Render/Sidebar.php:541
314
  #, php-format
315
  msgid ""
316
  "Enter custom format pattern to apply to this series value, similar to the "
371
  msgid "The angles of the line will be smoothed"
372
  msgstr "The angles of the line will be smoothed"
373
 
374
+ #: classes/Visualizer/Render/Sidebar/Linear.php:103
375
+ msgid "Enter custom format pattern to apply to horizontal axis labels."
376
+ msgstr "Enter custom format pattern to apply to horizontal axis labels."
377
+
378
+ #: classes/Visualizer/Render/Sidebar/Linear.php:105
379
+ #: classes/Visualizer/Render/Sidebar/Linear.php:136
380
+ #, php-format
381
+ msgid ""
382
+ "For number axis labels, this is a subset of the decimal formatting %sICU "
383
+ "pattern set%s. For instance, $#,###.## will display values $1,234.56 for "
384
+ "value 1234.56. Pay attention that if you use #%% percentage format then your "
385
+ "values will be multiplied by 100."
386
+ msgstr ""
387
+ "For number axis labels, this is a subset of the decimal formatting %sICU "
388
+ "pattern set%s. For instance, $#,###.## will display values $1,234.56 for "
389
+ "value 1234.56. Pay attention that if you use #%% percentage format then your "
390
+ "values will be multiplied by 100."
391
+
392
+ #: classes/Visualizer/Render/Sidebar/Linear.php:110
393
+ #, php-format
394
+ msgid ""
395
+ "For date axis labels, this is a subset of the date formatting %sICU date and "
396
+ "time format%s."
397
+ msgstr ""
398
+ "For date axis labels, this is a subset of the date formatting %sICU date and "
399
+ "time format%s."
400
+
401
+ #: classes/Visualizer/Render/Sidebar/Linear.php:134
402
+ msgid "Enter custom format pattern to apply to vertical axis labels."
403
+ msgstr "Enter custom format pattern to apply to vertical axis labels."
404
+
405
+ #: classes/Visualizer/Render/Sidebar/Linear.php:154
406
+ #: classes/Visualizer/Render/Sidebar/Linear.php:273
407
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:115
408
  msgid "Line Width And Point Size"
409
  msgstr "Line Width And Point Size"
410
 
411
+ #: classes/Visualizer/Render/Sidebar/Linear.php:168
412
  msgid ""
413
  "Data line width and diameter of displayed points in pixels. Use zero to hide "
414
  "all lines or points."
416
  "Data line width and diameter of displayed points in pixels. Use zero to hide "
417
  "all lines or points."
418
 
419
+ #: classes/Visualizer/Render/Sidebar/Linear.php:174
420
+ #: classes/Visualizer/Render/Sidebar/Linear.php:297
421
  msgid "Curve Type"
422
  msgstr "Curve Type"
423
 
424
+ #: classes/Visualizer/Render/Sidebar/Linear.php:178
425
+ #: classes/Visualizer/Render/Sidebar/Linear.php:268
426
+ #: classes/Visualizer/Render/Sidebar/Linear.php:301
427
+ #: classes/Visualizer/Render/Sidebar/Graph.php:402
428
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:110
429
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:169
430
  msgid "Determines whether the series has to be presented in the legend or not."
431
  msgstr ""
432
  "Determines whether the series has to be presented in the legend or not."
433
 
434
+ #: classes/Visualizer/Render/Sidebar/Linear.php:186
435
+ #: classes/Visualizer/Render/Sidebar/Columnar.php:47
436
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:61
437
  msgid "Focus Target"
438
  msgstr "Focus Target"
439
 
440
+ #: classes/Visualizer/Render/Sidebar/Linear.php:191
441
+ #: classes/Visualizer/Render/Sidebar/Columnar.php:52
442
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:66
443
  msgid "Focus on a single data point."
444
  msgstr "Focus on a single data point."
445
 
446
+ #: classes/Visualizer/Render/Sidebar/Linear.php:192
447
+ #: classes/Visualizer/Render/Sidebar/Columnar.php:53
448
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:67
449
  msgid "Focus on a grouping of all data points along the major axis."
450
  msgstr "Focus on a grouping of all data points along the major axis."
451
 
452
+ #: classes/Visualizer/Render/Sidebar/Linear.php:194
453
+ #: classes/Visualizer/Render/Sidebar/Columnar.php:55
454
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:69
455
  msgid ""
456
  "The type of the entity that receives focus on mouse hover. Also affects "
459
  "The type of the entity that receives focus on mouse hover. Also affects "
460
  "which entity is selected by mouse click."
461
 
462
+ #: classes/Visualizer/Render/Sidebar/Linear.php:199
463
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:75
464
+ msgid "Selection Mode"
465
+ msgstr "Selection Mode"
466
+
467
+ #: classes/Visualizer/Render/Sidebar/Linear.php:204
468
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:80
469
+ msgid "Single data point"
470
+ msgstr "Single data point"
471
+
472
+ #: classes/Visualizer/Render/Sidebar/Linear.php:205
473
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:81
474
+ msgid "Multiple data points"
475
+ msgstr "Multiple data points"
476
+
477
+ #: classes/Visualizer/Render/Sidebar/Linear.php:207
478
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:83
479
+ msgid "Determines how many data points an user can select on a chart."
480
+ msgstr "Determines how many data points an user can select on a chart."
481
+
482
+ #: classes/Visualizer/Render/Sidebar/Linear.php:211
483
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:87
484
+ msgid "Aggregation Target"
485
+ msgstr "Aggregation Target"
486
+
487
+ #: classes/Visualizer/Render/Sidebar/Linear.php:216
488
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:92
489
+ msgid "Group selected data by x-value"
490
+ msgstr "Group selected data by x-value"
491
+
492
+ #: classes/Visualizer/Render/Sidebar/Linear.php:217
493
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:93
494
+ msgid "Group selected data by series"
495
+ msgstr "Group selected data by series"
496
+
497
+ #: classes/Visualizer/Render/Sidebar/Linear.php:218
498
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:94
499
+ msgid ""
500
+ "Group selected data by x-value if all selections have the same x-value, and "
501
+ "by series otherwise"
502
+ msgstr ""
503
+ "Group selected data by x-value if all selections have the same x-value, and "
504
+ "by series otherwise"
505
+
506
+ #: classes/Visualizer/Render/Sidebar/Linear.php:219
507
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:95
508
+ msgid "Show only one tooltip per selection"
509
+ msgstr "Show only one tooltip per selection"
510
+
511
+ #: classes/Visualizer/Render/Sidebar/Linear.php:221
512
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:97
513
+ msgid ""
514
+ "Determines how multiple data selections are rolled up into tooltips. To make "
515
+ "it working you need to set multiple selection mode and tooltip trigger to "
516
+ "display it when an user selects an element."
517
+ msgstr ""
518
+ "Determines how multiple data selections are rolled up into tooltips. To make "
519
+ "it working you need to set multiple selection mode and tooltip trigger to "
520
+ "display it when an user selects an element."
521
+
522
+ #: classes/Visualizer/Render/Sidebar/Linear.php:227
523
+ msgid "Point Opacity"
524
+ msgstr "Point Opacity"
525
+
526
+ #: classes/Visualizer/Render/Sidebar/Linear.php:230
527
+ msgid ""
528
+ "The transparency of data points, with 1.0 being completely opaque and 0.0 "
529
+ "fully transparent."
530
+ msgstr ""
531
+ "The transparency of data points, with 1.0 being completely opaque and 0.0 "
532
+ "fully transparent."
533
+
534
+ #: classes/Visualizer/Render/Sidebar/Linear.php:243
535
  msgid "Lines Settings"
536
  msgstr "Lines Settings"
537
 
538
+ #: classes/Visualizer/Render/Sidebar/Linear.php:260
539
+ #: classes/Visualizer/Render/Sidebar/Graph.php:394
540
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:102
541
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:161
542
  msgid "Visible In Legend"
543
  msgstr "Visible In Legend"
544
 
545
+ #: classes/Visualizer/Render/Sidebar/Linear.php:289
546
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:131
547
  msgid "Overrides the global line width and point size values for this series."
548
  msgstr "Overrides the global line width and point size values for this series."
549
 
550
+ #: classes/Visualizer/Render/Sidebar/Linear.php:306
551
+ #: classes/Visualizer/Render/Sidebar/Graph.php:196
552
+ #: classes/Visualizer/Render/Sidebar/Graph.php:213
553
+ #: classes/Visualizer/Render/Sidebar/Graph.php:308
554
+ #: classes/Visualizer/Render/Sidebar/Graph.php:325
555
+ #: classes/Visualizer/Render/Sidebar/Graph.php:408
556
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:146
557
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:173
558
  msgid "Color"
559
  msgstr "Color"
560
 
562
  msgid "Bars Settings"
563
  msgstr "Bars Settings"
564
 
565
+ #: classes/Visualizer/Render/Sidebar/Columnar.php:61
566
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:84
567
  msgid "Is Stacked"
568
  msgstr "Is Stacked"
569
 
570
+ #: classes/Visualizer/Render/Sidebar/Columnar.php:65
571
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:88
572
  msgid "If set to yes, series elements are stacked."
573
  msgstr "If set to yes, series elements are stacked."
574
 
575
+ #: classes/Visualizer/Render/Sidebar/Columnar.php:71
576
+ msgid "Bars Opacity"
577
+ msgstr "Bars Opacity"
578
+
579
+ #: classes/Visualizer/Render/Sidebar/Columnar.php:74
580
+ msgid ""
581
+ "Bars transparency, with 1.0 being completely opaque and 0.0 fully "
582
+ "transparent."
583
+ msgstr ""
584
+ "Bars transparency, with 1.0 being completely opaque and 0.0 fully "
585
+ "transparent."
586
+
587
  #: classes/Visualizer/Render/Sidebar/Graph.php:83
588
  msgid "Outside the chart"
589
  msgstr "Outside the chart"
592
  msgid "None"
593
  msgstr "None"
594
 
595
+ #: classes/Visualizer/Render/Sidebar/Graph.php:104
596
  msgid "Chart Title Position"
597
  msgstr "Chart Title Position"
598
 
599
+ #: classes/Visualizer/Render/Sidebar/Graph.php:108
600
  msgid "Where to place the chart title, compared to the chart area."
601
  msgstr "Where to place the chart title, compared to the chart area."
602
 
603
+ #: classes/Visualizer/Render/Sidebar/Graph.php:121
604
  msgid "Axes Titles Position"
605
  msgstr "Axes Titles Position"
606
 
607
+ #: classes/Visualizer/Render/Sidebar/Graph.php:125
608
  msgid "Determines where to place the axis titles, compared to the chart area."
609
  msgstr "Determines where to place the axis titles, compared to the chart area."
610
 
611
+ #: classes/Visualizer/Render/Sidebar/Graph.php:138
612
+ #: classes/Visualizer/Render/Sidebar/Graph.php:250
 
 
 
 
613
  msgid "Axis Title"
614
  msgstr "Axis Title"
615
 
616
+ #: classes/Visualizer/Render/Sidebar/Graph.php:141
617
  msgid "The title of the horizontal axis."
618
  msgstr "The title of the horizontal axis."
619
 
620
+ #: classes/Visualizer/Render/Sidebar/Graph.php:145
621
+ #: classes/Visualizer/Render/Sidebar/Graph.php:257
622
  msgid "Text Position"
623
  msgstr "Text Position"
624
 
625
+ #: classes/Visualizer/Render/Sidebar/Graph.php:149
626
  msgid "Position of the horizontal axis text, relative to the chart area."
627
  msgstr "Position of the horizontal axis text, relative to the chart area."
628
 
629
+ #: classes/Visualizer/Render/Sidebar/Graph.php:153
630
+ #: classes/Visualizer/Render/Sidebar/Graph.php:265
631
  msgid "Direction"
632
  msgstr "Direction"
633
 
634
+ #: classes/Visualizer/Render/Sidebar/Graph.php:158
635
+ #: classes/Visualizer/Render/Sidebar/Graph.php:270
636
  msgid "Identical Direction"
637
  msgstr "Identical Direction"
638
 
639
+ #: classes/Visualizer/Render/Sidebar/Graph.php:159
640
+ #: classes/Visualizer/Render/Sidebar/Graph.php:271
641
  msgid "Reverse Direction"
642
  msgstr "Reverse Direction"
643
 
644
+ #: classes/Visualizer/Render/Sidebar/Graph.php:161
645
  msgid "The direction in which the values along the horizontal axis grow."
646
  msgstr "The direction in which the values along the horizontal axis grow."
647
 
648
+ #: classes/Visualizer/Render/Sidebar/Graph.php:165
649
+ #: classes/Visualizer/Render/Sidebar/Graph.php:277
650
  msgid "Base Line Color"
651
  msgstr "Base Line Color"
652
 
653
+ #: classes/Visualizer/Render/Sidebar/Graph.php:180
654
+ msgid "Horizontal Axis Settings"
655
+ msgstr "Horizontal Axis Settings"
656
+
657
+ #: classes/Visualizer/Render/Sidebar/Graph.php:186
658
+ #: classes/Visualizer/Render/Sidebar/Graph.php:298
659
  msgid "Grid Lines"
660
  msgstr "Grid Lines"
661
 
662
+ #: classes/Visualizer/Render/Sidebar/Graph.php:188
663
+ #: classes/Visualizer/Render/Sidebar/Graph.php:205
664
+ #: classes/Visualizer/Render/Sidebar/Graph.php:300
665
+ #: classes/Visualizer/Render/Sidebar/Graph.php:317
666
  msgid "Count"
667
  msgstr "Count"
668
 
669
+ #: classes/Visualizer/Render/Sidebar/Graph.php:191
670
  msgid ""
671
  "The number of horizontal gridlines inside the chart area. Minimum value is "
672
  "2. Specify -1 to automatically compute the number of gridlines."
674
  "The number of horizontal gridlines inside the chart area. Minimum value is "
675
  "2. Specify -1 to automatically compute the number of gridlines."
676
 
677
+ #: classes/Visualizer/Render/Sidebar/Graph.php:203
678
+ #: classes/Visualizer/Render/Sidebar/Graph.php:315
679
  msgid "Minor Grid Lines"
680
  msgstr "Minor Grid Lines"
681
 
682
+ #: classes/Visualizer/Render/Sidebar/Graph.php:208
683
  msgid "The number of horizontal minor gridlines between two regular gridlines."
684
  msgstr ""
685
  "The number of horizontal minor gridlines between two regular gridlines."
686
 
687
+ #: classes/Visualizer/Render/Sidebar/Graph.php:222
688
+ #: classes/Visualizer/Render/Sidebar/Graph.php:334
689
  msgid "View Window"
690
  msgstr "View Window"
691
 
692
+ #: classes/Visualizer/Render/Sidebar/Graph.php:224
693
+ #: classes/Visualizer/Render/Sidebar/Graph.php:336
694
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:202
695
  msgid "Maximum Value"
696
  msgstr "Maximum Value"
697
 
698
+ #: classes/Visualizer/Render/Sidebar/Graph.php:231
699
+ #: classes/Visualizer/Render/Sidebar/Graph.php:343
700
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:188
701
  msgid "Minimum Value"
702
  msgstr "Minimum Value"
703
 
704
+ #: classes/Visualizer/Render/Sidebar/Graph.php:253
 
 
 
 
705
  msgid "The title of the vertical axis."
706
  msgstr "The title of the vertical axis."
707
 
708
+ #: classes/Visualizer/Render/Sidebar/Graph.php:261
709
  msgid "Position of the vertical axis text, relative to the chart area."
710
  msgstr "Position of the vertical axis text, relative to the chart area."
711
 
712
+ #: classes/Visualizer/Render/Sidebar/Graph.php:273
713
  msgid "The direction in which the values along the vertical axis grow."
714
  msgstr "The direction in which the values along the vertical axis grow."
715
 
716
+ #: classes/Visualizer/Render/Sidebar/Graph.php:292
717
+ msgid "Vertical Axis Settings"
718
+ msgstr "Vertical Axis Settings"
719
+
720
+ #: classes/Visualizer/Render/Sidebar/Graph.php:303
721
  msgid ""
722
  "The number of vertical gridlines inside the chart area. Minimum value is 2. "
723
  "Specify -1 to automatically compute the number of gridlines."
725
  "The number of vertical gridlines inside the chart area. Minimum value is 2. "
726
  "Specify -1 to automatically compute the number of gridlines."
727
 
728
+ #: classes/Visualizer/Render/Sidebar/Graph.php:320
729
  msgid "The number of vertical minor gridlines between two regular gridlines."
730
  msgstr "The number of vertical minor gridlines between two regular gridlines."
731
 
732
+ #: classes/Visualizer/Render/Sidebar/Graph.php:373
733
  msgid "Series Settings"
734
  msgstr "Series Settings"
735
 
855
  msgid "Markers"
856
  msgstr "Markers"
857
 
858
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:163
859
  msgid "Color Axis"
860
  msgstr "Color Axis"
861
 
862
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:165
863
  msgid ""
864
  "Configure color axis gradient scale, minimum and maximun values and a color "
865
  "of the dateless regions."
867
  "Configure color axis gradient scale, minimum and maximun values and a color "
868
  "of the dateless regions."
869
 
870
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:169
871
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:233
872
  msgid "Minimum And Maximum Values"
873
  msgstr "Minimum And Maximum Values"
874
 
875
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:183
876
  msgid "Determines the minimum and maximum values of color axis."
877
  msgstr "Determines the minimum and maximum values of color axis."
878
 
879
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:195
880
  msgid "Intermediate Value"
881
  msgstr "Intermediate Value"
882
 
883
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:209
884
  msgid "Dateless Region"
885
  msgstr "Dateless Region"
886
 
887
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:227
888
  msgid "Size Axis"
889
  msgstr "Size Axis"
890
 
891
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:229
892
  msgid ""
893
  "Configure how values are associated with bubble size, minimum and maximun "
894
  "values and marker opacity setting."
896
  "Configure how values are associated with bubble size, minimum and maximun "
897
  "values and marker opacity setting."
898
 
899
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:247
900
  msgid "Determines the minimum and maximum values of size axis."
901
  msgstr "Determines the minimum and maximum values of size axis."
902
 
903
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:253
904
  msgid "Minimum And Maximum Marker Radius"
905
  msgstr "Minimum And Maximum Marker Radius"
906
 
907
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:267
908
  msgid ""
909
  "Determines the radius of the smallest and largest possible bubbles, in "
910
  "pixels."
912
  "Determines the radius of the smallest and largest possible bubbles, in "
913
  "pixels."
914
 
915
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:272
916
  msgid "Marker Opacity"
917
  msgstr "Marker Opacity"
918
 
919
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:275
920
  msgid ""
921
  "The opacity of the markers, where 0.0 is fully transparent and 1.0 is fully "
922
  "opaque."
924
  "The opacity of the markers, where 0.0 is fully transparent and 1.0 is fully "
925
  "opaque."
926
 
927
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:293
928
  msgid "Magnifying Glass"
929
  msgstr "Magnifying Glass"
930
 
931
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:295
932
  msgid ""
933
  "Configure magnifying glass settings, which appears, when the user lingers "
934
  "over a cluttered marker. Note: this feature is not supported in browsers "
938
  "over a cluttered marker. Note: this feature is not supported in browsers "
939
  "that do not support SVG, i.e. Internet Explorer version 8 or earlier."
940
 
941
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:298
942
  msgid "Enabled"
943
  msgstr "Enabled"
944
 
945
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:302
946
  msgid ""
947
  "If yes, when the user lingers over a cluttered marker, a magnifiying glass "
948
  "will be opened."
950
  "If yes, when the user lingers over a cluttered marker, a magnifiying glass "
951
  "will be opened."
952
 
953
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:306
954
  msgid "Zoom Factor"
955
  msgstr "Zoom Factor"
956
 
957
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:309
958
  msgid ""
959
  "The zoom factor of the magnifying glass. Can be any number greater than 0."
960
  msgstr ""
961
  "The zoom factor of the magnifying glass. Can be any number greater than 0."
962
 
963
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:324
964
  msgid "Layout Settings"
965
  msgstr "Layout Settings"
966
 
967
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:349
968
  msgid "Keep Aspect Ratio"
969
  msgstr "Keep Aspect Ratio"
970
 
971
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:353
972
  msgid ""
973
  "If yes, the map will be drawn at the largest size that can fit inside the "
974
  "chart area at its natural aspect ratio. If only one of the width and height "
980
  "options is specified, the other one will be calculated according to the "
981
  "aspect ratio."
982
 
983
+ #: classes/Visualizer/Render/Sidebar/Type/Geo.php:354
984
  msgid ""
985
  "If no, the map will be stretched to the exact size of the chart as specified "
986
  "by the width and height options."
988
  "If no, the map will be stretched to the exact size of the chart as specified "
989
  "by the width and height options."
990
 
991
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:74
992
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:138
993
+ msgid "Area Opacity"
994
+ msgstr "Area Opacity"
995
+
996
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:77
997
+ msgid ""
998
+ "The default opacity of the colored area under an area chart series, where "
999
+ "0.0 is fully transparent and 1.0 is fully opaque. To specify opacity for an "
1000
+ "individual series, set the area opacity value in the series property."
1001
+ msgstr ""
1002
+ "The default opacity of the colored area under an area chart series, where "
1003
+ "0.0 is fully transparent and 1.0 is fully opaque. To specify opacity for an "
1004
+ "individual series, set the area opacity value in the series property."
1005
+
1006
+ #: classes/Visualizer/Render/Sidebar/Type/Area.php:141
1007
+ msgid ""
1008
+ "The opacity of the colored area, where 0.0 is fully transparent and 1.0 is "
1009
+ "fully opaque."
1010
+ msgstr ""
1011
+ "The opacity of the colored area, where 0.0 is fully transparent and 1.0 is "
1012
+ "fully opaque."
1013
+
1014
  #: classes/Visualizer/Render/Sidebar/Type/Gauge.php:63
1015
  msgid "Min And Max Values"
1016
  msgstr "Min And Max Values"
1116
  msgid "The content of the text displayed on the slice."
1117
  msgstr "The content of the text displayed on the slice."
1118
 
1119
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:91
1120
+ msgid "Pie Hole"
1121
+ msgstr "Pie Hole"
1122
+
1123
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:94
1124
+ msgid ""
1125
+ "If between 0 and 1, displays a donut chart. The hole with have a radius "
1126
+ "equal to number times the radius of the chart. Only applicable when the "
1127
+ "chart is two-dimensional."
1128
+ msgstr ""
1129
+ "If between 0 and 1, displays a donut chart. The hole with have a radius "
1130
+ "equal to number times the radius of the chart. Only applicable when the "
1131
+ "chart is two-dimensional."
1132
+
1133
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:99
1134
+ msgid "Start Angle"
1135
+ msgstr "Start Angle"
1136
+
1137
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:102
1138
+ msgid ""
1139
+ "The angle, in degrees, to rotate the chart by. The default of 0 will orient "
1140
+ "the leftmost edge of the first slice directly up."
1141
+ msgstr ""
1142
+ "The angle, in degrees, to rotate the chart by. The default of 0 will orient "
1143
+ "the leftmost edge of the first slice directly up."
1144
+
1145
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:107
1146
  msgid "Slice Border Color"
1147
  msgstr "Slice Border Color"
1148
 
1149
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:124
1150
  msgid "Residue Settings"
1151
  msgstr "Residue Settings"
1152
 
1153
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:127
1154
  msgid "Visibility Threshold"
1155
  msgstr "Visibility Threshold"
1156
 
1157
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:130
1158
  msgid ""
1159
  "The slice relative part, below which a slice will not show individually. All "
1160
  "slices that have not passed this threshold will be combined to a single "
1166
  "slice, whose size is the sum of all their sizes. Default is not to show "
1167
  "individually any slice which is smaller than half a degree."
1168
 
1169
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:135
1170
  msgid "Residue Slice Label"
1171
  msgstr "Residue Slice Label"
1172
 
1173
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:138
1174
  msgid ""
1175
  "A label for the combination slice that holds all slices below slice "
1176
  "visibility threshold."
1178
  "A label for the combination slice that holds all slices below slice "
1179
  "visibility threshold."
1180
 
1181
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:139
1182
  msgid "Other"
1183
  msgstr "Other"
1184
 
1185
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:143
1186
  msgid "Residue Slice Color"
1187
  msgstr "Residue Slice Color"
1188
 
1189
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:160
1190
+ msgid "Slices Settings"
1191
+ msgstr "Slices Settings"
1192
+
1193
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:164
1194
+ msgid "Slice Offset"
1195
+ msgstr "Slice Offset"
1196
+
1197
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:167
1198
+ msgid ""
1199
+ "How far to separate the slice from the rest of the pie, from 0.0 (not at "
1200
+ "all) to 1.0 (the pie's radius)."
1201
+ msgstr ""
1202
+ "How far to separate the slice from the rest of the pie, from 0.0 (not at "
1203
+ "all) to 1.0 (the pie's radius)."
1204
+
1205
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:172
1206
+ msgid "Slice Color"
1207
+ msgstr "Slice Color"
1208
+
1209
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:193
1210
+ msgid "Text"
1211
+ msgstr "Text"
1212
+
1213
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:198
1214
+ msgid ""
1215
+ "Display both the absolute value of the slice and the percentage of the whole"
1216
+ msgstr ""
1217
+ "Display both the absolute value of the slice and the percentage of the whole"
1218
+
1219
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:199
1220
+ msgid "Display only the absolute value of the slice"
1221
+ msgstr "Display only the absolute value of the slice"
1222
+
1223
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:200
1224
+ msgid "Display only the percentage of the whole represented by the slice"
1225
+ msgstr "Display only the percentage of the whole represented by the slice"
1226
+
1227
+ #: classes/Visualizer/Render/Sidebar/Type/Pie.php:202
1228
+ msgid ""
1229
+ "Determines what information to display when the user hovers over a pie slice."
1230
+ msgstr ""
1231
+ "Determines what information to display when the user hovers over a pie slice."
1232
+
1233
+ #: classes/Visualizer/Render/Sidebar/Type/Line.php:63
1234
+ msgid "Interpolate Nulls"
1235
+ msgstr "Interpolate Nulls"
1236
+
1237
+ #: classes/Visualizer/Render/Sidebar/Type/Line.php:67
1238
+ msgid ""
1239
+ "Whether to guess the value of missing points. If yes, it will guess the "
1240
+ "value of any missing data based on neighboring points. If no, it will leave "
1241
+ "a break in the line at the unknown point."
1242
+ msgstr ""
1243
+ "Whether to guess the value of missing points. If yes, it will guess the "
1244
+ "value of any missing data based on neighboring points. If no, it will leave "
1245
+ "a break in the line at the unknown point."
1246
 
1247
  #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:58
1248
  msgid "Candles Settings"
1249
  msgstr "Candles Settings"
1250
 
1251
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:101
1252
  msgid "Failing Candles"
1253
  msgstr "Failing Candles"
1254
 
1255
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:106
1256
  msgid "The stroke width of falling candles."
1257
  msgstr "The stroke width of falling candles."
1258
 
1259
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:118
1260
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:142
1261
  msgid "Fill Color"
1262
  msgstr "Fill Color"
1263
 
1264
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:125
1265
  msgid "Rising Candles"
1266
  msgstr "Rising Candles"
1267
 
1268
+ #: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:130
1269
  msgid "The stroke width of rising candles."
1270
  msgstr "The stroke width of rising candles."
1271
 
1374
  msgid "Knowledge Base"
1375
  msgstr "Knowledge Base"
1376
 
 
 
 
 
1377
  #: classes/Visualizer/Module/Chart.php:318
1378
  msgid "Please, enter the URL of CSV file:"
1379
  msgstr "Please, enter the URL of CSV file:"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: madpixels, straightforward
3
  Donate link: http://goo.gl/hN9FYf
4
  Tags: chart, charts, charting, graph, graphs, graphing, visualisation, visualise data, visualization, visualize data, HTML5, canvas, pie chart, line chart, bar chart, column chart, gauge chart, area chart, scatter chart, candlestick chart, geo chart, google visualization api
5
  Requires at least: 3.5
6
- Tested up to: 3.7.1
7
- Stable tag: 1.3.0.2
8
  License: GPL v2.0 or later
9
  License URI: http://www.opensource.org/licenses/gpl-license.php
10
 
@@ -58,6 +58,18 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
58
 
59
  == Changelog ==
60
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  = 1.3.0.2 =
62
  * Replaced links to github wiki
63
 
3
  Donate link: http://goo.gl/hN9FYf
4
  Tags: chart, charts, charting, graph, graphs, graphing, visualisation, visualise data, visualization, visualize data, HTML5, canvas, pie chart, line chart, bar chart, column chart, gauge chart, area chart, scatter chart, candlestick chart, geo chart, google visualization api
5
  Requires at least: 3.5
6
+ Tested up to: 3.8
7
+ Stable tag: 1.4
8
  License: GPL v2.0 or later
9
  License URI: http://www.opensource.org/licenses/gpl-license.php
10
 
58
 
59
  == Changelog ==
60
 
61
+ = 1.4 =
62
+ * Implemented aggregation target and selection mode options for candlestick chart
63
+ * Implemented focus target and data opacity for columnar chars
64
+ * Implemented data opacity and interpolate nulls settings for line chart
65
+ * Implemented ability to edit tooltip settings
66
+ * Implemented new settings for linear charts like selection mode and aggregation target
67
+ * Implemented area and point opacity settings for area chart
68
+ * Implemented new settings for pie chart like pie hole, start angle and slice offset
69
+ * Implemented ability to select a color for chart title and legend items
70
+ * Fixed number formatting settings for linear charts, from now it works only for axis labels
71
+ * Reworked general settings section by moving title and font settings into separate groups
72
+
73
  = 1.3.0.2 =
74
  * Replaced links to github wiki
75