Version Description
- Implemented ability to edit horizontal and vertical axis number format for bar and column charts
Download this release
Release Info
Developer | themeisle |
Plugin | WordPress Charts and Graphs Lite |
Version | 1.4.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.4.2.2 to 1.4.2.3
- classes/Visualizer/Module/Setup.php +1 -1
- classes/Visualizer/Plugin.php +1 -1
- classes/Visualizer/Render/Sidebar/Graph.php +58 -0
- classes/Visualizer/Render/Sidebar/Linear.php +2 -35
- classes/Visualizer/Render/Sidebar/Type/Bar.php +12 -0
- classes/Visualizer/Render/Sidebar/Type/Column.php +12 -0
- index.php +5 -24
- languages/visualizer-en_US.mo +0 -0
- languages/visualizer-en_US.po +65 -64
- readme.txt +18 -16
classes/Visualizer/Module/Setup.php
CHANGED
@@ -57,7 +57,7 @@ class Visualizer_Module_Setup extends Visualizer_Module {
|
|
57 |
*/
|
58 |
public function setupCustomPostTypes() {
|
59 |
register_post_type( Visualizer_Plugin::CPT_VISUALIZER, array(
|
60 |
-
'label' => 'Visualizer
|
61 |
'public' => false,
|
62 |
) );
|
63 |
}
|
57 |
*/
|
58 |
public function setupCustomPostTypes() {
|
59 |
register_post_type( Visualizer_Plugin::CPT_VISUALIZER, array(
|
60 |
+
'label' => 'Visualizer Charts',
|
61 |
'public' => false,
|
62 |
) );
|
63 |
}
|
classes/Visualizer/Plugin.php
CHANGED
@@ -30,7 +30,7 @@
|
|
30 |
class Visualizer_Plugin {
|
31 |
|
32 |
const NAME = 'visualizer';
|
33 |
-
const VERSION = '1.4.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.2.3';
|
34 |
|
35 |
// custom post types
|
36 |
const CPT_VISUALIZER = 'visualizer';
|
classes/Visualizer/Render/Sidebar/Graph.php
CHANGED
@@ -412,4 +412,62 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
|
|
412 |
);
|
413 |
}
|
414 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
415 |
}
|
412 |
);
|
413 |
}
|
414 |
|
415 |
+
/**
|
416 |
+
* Renders format field for horizontal axis.
|
417 |
+
*
|
418 |
+
* @since 1.4.3
|
419 |
+
*
|
420 |
+
* @access protected
|
421 |
+
*/
|
422 |
+
protected function _renderHorizontalAxisFormatField() {
|
423 |
+
self::_renderTextItem(
|
424 |
+
esc_html__( 'Number Format', Visualizer_Plugin::NAME ),
|
425 |
+
'hAxis[format]',
|
426 |
+
isset( $this->hAxis['format'] ) ? $this->hAxis['format'] : '',
|
427 |
+
sprintf(
|
428 |
+
'%s<br><br>%s<br><br>%s',
|
429 |
+
esc_html__( 'Enter custom format pattern to apply to horizontal axis labels.', Visualizer_Plugin::NAME ),
|
430 |
+
sprintf(
|
431 |
+
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 ),
|
432 |
+
'<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
|
433 |
+
'</a>'
|
434 |
+
),
|
435 |
+
sprintf(
|
436 |
+
esc_html__( 'For date axis labels, this is a subset of the date formatting %sICU date and time format%s.', Visualizer_Plugin::NAME ),
|
437 |
+
'<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
|
438 |
+
'</a>'
|
439 |
+
)
|
440 |
+
)
|
441 |
+
);
|
442 |
+
}
|
443 |
+
|
444 |
+
/**
|
445 |
+
* Renders format field for vertical axis settings.
|
446 |
+
*
|
447 |
+
* @since 1.4.3
|
448 |
+
*
|
449 |
+
* @access protected
|
450 |
+
*/
|
451 |
+
protected function _renderVerticalAxisFormatField() {
|
452 |
+
self::_renderTextItem(
|
453 |
+
esc_html__( 'Number Format', Visualizer_Plugin::NAME ),
|
454 |
+
'vAxis[format]',
|
455 |
+
isset( $this->vAxis['format'] ) ? $this->vAxis['format'] : '',
|
456 |
+
sprintf(
|
457 |
+
'%s<br><br>%s<br><br>%s',
|
458 |
+
esc_html__( 'Enter custom format pattern to apply to vertical axis labels.', Visualizer_Plugin::NAME ),
|
459 |
+
sprintf(
|
460 |
+
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 ),
|
461 |
+
'<a href="http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details" target="_blank">',
|
462 |
+
'</a>'
|
463 |
+
),
|
464 |
+
sprintf(
|
465 |
+
esc_html__( 'For date axis labels, this is a subset of the date formatting %sICU date and time format%s.', Visualizer_Plugin::NAME ),
|
466 |
+
'<a href="http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax" target="_blank">',
|
467 |
+
'</a>'
|
468 |
+
)
|
469 |
+
)
|
470 |
+
);
|
471 |
+
}
|
472 |
+
|
473 |
}
|
classes/Visualizer/Render/Sidebar/Linear.php
CHANGED
@@ -93,26 +93,7 @@ abstract class Visualizer_Render_Sidebar_Linear extends Visualizer_Render_Sideba
|
|
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 |
/**
|
@@ -124,21 +105,7 @@ abstract class Visualizer_Render_Sidebar_Linear extends Visualizer_Render_Sideba
|
|
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 |
/**
|
93 |
*/
|
94 |
protected function _renderHorizontalAxisGeneratSettings() {
|
95 |
parent::_renderHorizontalAxisGeneratSettings();
|
96 |
+
$this->_renderHorizontalAxisFormatField();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
}
|
98 |
|
99 |
/**
|
105 |
*/
|
106 |
protected function _renderVerticalAxisGeneralSettings() {
|
107 |
parent::_renderVerticalAxisGeneralSettings();
|
108 |
+
$this->_renderVerticalAxisFormatField();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
|
111 |
/**
|
classes/Visualizer/Render/Sidebar/Type/Bar.php
CHANGED
@@ -47,6 +47,18 @@ class Visualizer_Render_Sidebar_Type_Bar extends Visualizer_Render_Sidebar_Colum
|
|
47 |
$this->_horizontalGridLines = false;
|
48 |
}
|
49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
/**
|
51 |
* Renders template.
|
52 |
*
|
47 |
$this->_horizontalGridLines = false;
|
48 |
}
|
49 |
|
50 |
+
/**
|
51 |
+
* Renders general settings block for horizontal axis settings.
|
52 |
+
*
|
53 |
+
* @since 1.4.3
|
54 |
+
*
|
55 |
+
* @access protected
|
56 |
+
*/
|
57 |
+
protected function _renderHorizontalAxisGeneratSettings() {
|
58 |
+
parent::_renderHorizontalAxisGeneratSettings();
|
59 |
+
$this->_renderHorizontalAxisFormatField();
|
60 |
+
}
|
61 |
+
|
62 |
/**
|
63 |
* Renders template.
|
64 |
*
|
classes/Visualizer/Render/Sidebar/Type/Column.php
CHANGED
@@ -47,6 +47,18 @@ class Visualizer_Render_Sidebar_Type_Column extends Visualizer_Render_Sidebar_Co
|
|
47 |
$this->_verticalGridLines = false;
|
48 |
}
|
49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
/**
|
51 |
* Renders template.
|
52 |
*
|
47 |
$this->_verticalGridLines = false;
|
48 |
}
|
49 |
|
50 |
+
/**
|
51 |
+
* Renders general settings block for vertical axis settings.
|
52 |
+
*
|
53 |
+
* @since 1.4.3
|
54 |
+
*
|
55 |
+
* @access protected
|
56 |
+
*/
|
57 |
+
protected function _renderVerticalAxisGeneralSettings() {
|
58 |
+
parent::_renderVerticalAxisGeneralSettings();
|
59 |
+
$this->_renderVerticalAxisFormatField();
|
60 |
+
}
|
61 |
+
|
62 |
/**
|
63 |
* Renders template.
|
64 |
*
|
index.php
CHANGED
@@ -1,35 +1,16 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name:
|
4 |
-
Plugin URI: https://github.com/
|
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.2.
|
7 |
-
Author:
|
8 |
-
Author URI: http://
|
9 |
Donate link: http://flattr.com/thing/2574985/WordPress-Visualizer
|
10 |
License: GPL v2.0 or later
|
11 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
12 |
*/
|
13 |
|
14 |
-
// +----------------------------------------------------------------------+
|
15 |
-
// | Copyright 2013 Madpixels (email : visualizer@madpixels.net) |
|
16 |
-
// +----------------------------------------------------------------------+
|
17 |
-
// | This program is free software; you can redistribute it and/or modify |
|
18 |
-
// | it under the terms of the GNU General Public License, version 2, as |
|
19 |
-
// | published by the Free Software Foundation. |
|
20 |
-
// | |
|
21 |
-
// | This program is distributed in the hope that it will be useful, |
|
22 |
-
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
23 |
-
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
24 |
-
// | GNU General Public License for more details. |
|
25 |
-
// | |
|
26 |
-
// | You should have received a copy of the GNU General Public License |
|
27 |
-
// | along with this program; if not, write to the Free Software |
|
28 |
-
// | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, |
|
29 |
-
// | MA 02110-1301 USA |
|
30 |
-
// +----------------------------------------------------------------------+
|
31 |
-
// | Author: Eugene Manuilov <eugene@manuilov.org> |
|
32 |
-
// +----------------------------------------------------------------------+
|
33 |
|
34 |
// prevent direct access to the plugin folder
|
35 |
if ( !defined( 'ABSPATH' ) ) {
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: Visualizer: Charts and Graphs
|
4 |
+
Plugin URI: https://github.com/codeinwp/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.2.3
|
7 |
+
Author: Themeisle
|
8 |
+
Author URI: http://themeisle.com
|
9 |
Donate link: http://flattr.com/thing/2574985/WordPress-Visualizer
|
10 |
License: GPL v2.0 or later
|
11 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
12 |
*/
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
// prevent direct access to the plugin folder
|
16 |
if ( !defined( 'ABSPATH' ) ) {
|
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: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Eugene Manuilov <eugene@manuilov.org>\n"
|
8 |
"Language-Team: Eugene Manuilov <eugene@manuilov.org>\n"
|
9 |
"Language: en_US\n"
|
@@ -53,7 +53,7 @@ msgid "Aligned to the end of the allocated area"
|
|
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:
|
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
|
@@ -61,7 +61,7 @@ msgid "Yes"
|
|
61 |
msgstr "Yes"
|
62 |
|
63 |
#: classes/Visualizer/Render/Sidebar.php:118
|
64 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
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
|
@@ -288,8 +288,8 @@ msgid "Hex Value"
|
|
288 |
msgstr "Hex Value"
|
289 |
|
290 |
#: classes/Visualizer/Render/Sidebar.php:527
|
291 |
-
#: classes/Visualizer/Render/Sidebar/
|
292 |
-
#: classes/Visualizer/Render/Sidebar/
|
293 |
msgid "Number Format"
|
294 |
msgstr "Number Format"
|
295 |
|
@@ -380,44 +380,13 @@ msgstr "Straight line without curve"
|
|
380 |
msgid "The angles of the line will be smoothed"
|
381 |
msgstr "The angles of the line will be smoothed"
|
382 |
|
383 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
384 |
-
|
385 |
-
msgstr "Enter custom format pattern to apply to horizontal axis labels."
|
386 |
-
|
387 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:105
|
388 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:136
|
389 |
-
#, php-format
|
390 |
-
msgid ""
|
391 |
-
"For number axis labels, this is a subset of the decimal formatting %sICU "
|
392 |
-
"pattern set%s. For instance, $#,###.## will display values $1,234.56 for "
|
393 |
-
"value 1234.56. Pay attention that if you use #%% percentage format then your "
|
394 |
-
"values will be multiplied by 100."
|
395 |
-
msgstr ""
|
396 |
-
"For number axis labels, this is a subset of the decimal formatting %sICU "
|
397 |
-
"pattern set%s. For instance, $#,###.## will display values $1,234.56 for "
|
398 |
-
"value 1234.56. Pay attention that if you use #%% percentage format then your "
|
399 |
-
"values will be multiplied by 100."
|
400 |
-
|
401 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:110
|
402 |
-
#, php-format
|
403 |
-
msgid ""
|
404 |
-
"For date axis labels, this is a subset of the date formatting %sICU date and "
|
405 |
-
"time format%s."
|
406 |
-
msgstr ""
|
407 |
-
"For date axis labels, this is a subset of the date formatting %sICU date and "
|
408 |
-
"time format%s."
|
409 |
-
|
410 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:134
|
411 |
-
msgid "Enter custom format pattern to apply to vertical axis labels."
|
412 |
-
msgstr "Enter custom format pattern to apply to vertical axis labels."
|
413 |
-
|
414 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:154
|
415 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:273
|
416 |
#: classes/Visualizer/Render/Sidebar/Type/Area.php:115
|
417 |
msgid "Line Width And Point Size"
|
418 |
msgstr "Line Width And Point Size"
|
419 |
|
420 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
421 |
msgid ""
|
422 |
"Data line width and diameter of displayed points in pixels. Use zero to hide "
|
423 |
"all lines or points."
|
@@ -425,14 +394,14 @@ msgstr ""
|
|
425 |
"Data line width and diameter of displayed points in pixels. Use zero to hide "
|
426 |
"all lines or points."
|
427 |
|
428 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
429 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
430 |
msgid "Curve Type"
|
431 |
msgstr "Curve Type"
|
432 |
|
433 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
|
|
434 |
#: classes/Visualizer/Render/Sidebar/Linear.php:268
|
435 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:301
|
436 |
#: classes/Visualizer/Render/Sidebar/Graph.php:402
|
437 |
#: classes/Visualizer/Render/Sidebar/Type/Area.php:110
|
438 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:169
|
@@ -440,25 +409,25 @@ msgid "Determines whether the series has to be presented in the legend or not."
|
|
440 |
msgstr ""
|
441 |
"Determines whether the series has to be presented in the legend or not."
|
442 |
|
443 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
444 |
#: classes/Visualizer/Render/Sidebar/Columnar.php:47
|
445 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:61
|
446 |
msgid "Focus Target"
|
447 |
msgstr "Focus Target"
|
448 |
|
449 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
450 |
#: classes/Visualizer/Render/Sidebar/Columnar.php:52
|
451 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:66
|
452 |
msgid "Focus on a single data point."
|
453 |
msgstr "Focus on a single data point."
|
454 |
|
455 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
456 |
#: classes/Visualizer/Render/Sidebar/Columnar.php:53
|
457 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:67
|
458 |
msgid "Focus on a grouping of all data points along the major axis."
|
459 |
msgstr "Focus on a grouping of all data points along the major axis."
|
460 |
|
461 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
462 |
#: classes/Visualizer/Render/Sidebar/Columnar.php:55
|
463 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:69
|
464 |
msgid ""
|
@@ -468,42 +437,42 @@ msgstr ""
|
|
468 |
"The type of the entity that receives focus on mouse hover. Also affects "
|
469 |
"which entity is selected by mouse click."
|
470 |
|
471 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
472 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:75
|
473 |
msgid "Selection Mode"
|
474 |
msgstr "Selection Mode"
|
475 |
|
476 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
477 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:80
|
478 |
msgid "Single data point"
|
479 |
msgstr "Single data point"
|
480 |
|
481 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
482 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:81
|
483 |
msgid "Multiple data points"
|
484 |
msgstr "Multiple data points"
|
485 |
|
486 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
487 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:83
|
488 |
msgid "Determines how many data points an user can select on a chart."
|
489 |
msgstr "Determines how many data points an user can select on a chart."
|
490 |
|
491 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
492 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:87
|
493 |
msgid "Aggregation Target"
|
494 |
msgstr "Aggregation Target"
|
495 |
|
496 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
497 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:92
|
498 |
msgid "Group selected data by x-value"
|
499 |
msgstr "Group selected data by x-value"
|
500 |
|
501 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
502 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:93
|
503 |
msgid "Group selected data by series"
|
504 |
msgstr "Group selected data by series"
|
505 |
|
506 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
507 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:94
|
508 |
msgid ""
|
509 |
"Group selected data by x-value if all selections have the same x-value, and "
|
@@ -512,12 +481,12 @@ msgstr ""
|
|
512 |
"Group selected data by x-value if all selections have the same x-value, and "
|
513 |
"by series otherwise"
|
514 |
|
515 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
516 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:95
|
517 |
msgid "Show only one tooltip per selection"
|
518 |
msgstr "Show only one tooltip per selection"
|
519 |
|
520 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
521 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:97
|
522 |
msgid ""
|
523 |
"Determines how multiple data selections are rolled up into tooltips. To make "
|
@@ -528,11 +497,11 @@ msgstr ""
|
|
528 |
"it working you need to set multiple selection mode and tooltip trigger to "
|
529 |
"display it when an user selects an element."
|
530 |
|
531 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
532 |
msgid "Point Opacity"
|
533 |
msgstr "Point Opacity"
|
534 |
|
535 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
536 |
msgid ""
|
537 |
"The transparency of data points, with 1.0 being completely opaque and 0.0 "
|
538 |
"fully transparent."
|
@@ -540,23 +509,23 @@ msgstr ""
|
|
540 |
"The transparency of data points, with 1.0 being completely opaque and 0.0 "
|
541 |
"fully transparent."
|
542 |
|
543 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
544 |
msgid "Lines Settings"
|
545 |
msgstr "Lines Settings"
|
546 |
|
547 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
548 |
#: classes/Visualizer/Render/Sidebar/Graph.php:394
|
549 |
#: classes/Visualizer/Render/Sidebar/Type/Area.php:102
|
550 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:161
|
551 |
msgid "Visible In Legend"
|
552 |
msgstr "Visible In Legend"
|
553 |
|
554 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
555 |
#: classes/Visualizer/Render/Sidebar/Type/Area.php:131
|
556 |
msgid "Overrides the global line width and point size values for this series."
|
557 |
msgstr "Overrides the global line width and point size values for this series."
|
558 |
|
559 |
-
#: classes/Visualizer/Render/Sidebar/Linear.php:
|
560 |
#: classes/Visualizer/Render/Sidebar/Graph.php:196
|
561 |
#: classes/Visualizer/Render/Sidebar/Graph.php:213
|
562 |
#: classes/Visualizer/Render/Sidebar/Graph.php:308
|
@@ -742,6 +711,38 @@ msgstr "The number of vertical minor gridlines between two regular gridlines."
|
|
742 |
msgid "Series Settings"
|
743 |
msgstr "Series Settings"
|
744 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
745 |
#: classes/Visualizer/Render/Sidebar/Type/Geo.php:58
|
746 |
msgid "Map Settings"
|
747 |
msgstr "Map Settings"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Visualizer\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-05 14:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-05 14:41+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"
|
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:233
|
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
|
61 |
msgstr "Yes"
|
62 |
|
63 |
#: classes/Visualizer/Render/Sidebar.php:118
|
64 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:232
|
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
|
288 |
msgstr "Hex Value"
|
289 |
|
290 |
#: classes/Visualizer/Render/Sidebar.php:527
|
291 |
+
#: classes/Visualizer/Render/Sidebar/Graph.php:424
|
292 |
+
#: classes/Visualizer/Render/Sidebar/Graph.php:453
|
293 |
msgid "Number Format"
|
294 |
msgstr "Number Format"
|
295 |
|
380 |
msgid "The angles of the line will be smoothed"
|
381 |
msgstr "The angles of the line will be smoothed"
|
382 |
|
383 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:121
|
384 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:240
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
385 |
#: classes/Visualizer/Render/Sidebar/Type/Area.php:115
|
386 |
msgid "Line Width And Point Size"
|
387 |
msgstr "Line Width And Point Size"
|
388 |
|
389 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:135
|
390 |
msgid ""
|
391 |
"Data line width and diameter of displayed points in pixels. Use zero to hide "
|
392 |
"all lines or points."
|
394 |
"Data line width and diameter of displayed points in pixels. Use zero to hide "
|
395 |
"all lines or points."
|
396 |
|
397 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:141
|
398 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:264
|
399 |
msgid "Curve Type"
|
400 |
msgstr "Curve Type"
|
401 |
|
402 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:145
|
403 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:235
|
404 |
#: classes/Visualizer/Render/Sidebar/Linear.php:268
|
|
|
405 |
#: classes/Visualizer/Render/Sidebar/Graph.php:402
|
406 |
#: classes/Visualizer/Render/Sidebar/Type/Area.php:110
|
407 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:169
|
409 |
msgstr ""
|
410 |
"Determines whether the series has to be presented in the legend or not."
|
411 |
|
412 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:153
|
413 |
#: classes/Visualizer/Render/Sidebar/Columnar.php:47
|
414 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:61
|
415 |
msgid "Focus Target"
|
416 |
msgstr "Focus Target"
|
417 |
|
418 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:158
|
419 |
#: classes/Visualizer/Render/Sidebar/Columnar.php:52
|
420 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:66
|
421 |
msgid "Focus on a single data point."
|
422 |
msgstr "Focus on a single data point."
|
423 |
|
424 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:159
|
425 |
#: classes/Visualizer/Render/Sidebar/Columnar.php:53
|
426 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:67
|
427 |
msgid "Focus on a grouping of all data points along the major axis."
|
428 |
msgstr "Focus on a grouping of all data points along the major axis."
|
429 |
|
430 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:161
|
431 |
#: classes/Visualizer/Render/Sidebar/Columnar.php:55
|
432 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:69
|
433 |
msgid ""
|
437 |
"The type of the entity that receives focus on mouse hover. Also affects "
|
438 |
"which entity is selected by mouse click."
|
439 |
|
440 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:166
|
441 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:75
|
442 |
msgid "Selection Mode"
|
443 |
msgstr "Selection Mode"
|
444 |
|
445 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:171
|
446 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:80
|
447 |
msgid "Single data point"
|
448 |
msgstr "Single data point"
|
449 |
|
450 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:172
|
451 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:81
|
452 |
msgid "Multiple data points"
|
453 |
msgstr "Multiple data points"
|
454 |
|
455 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:174
|
456 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:83
|
457 |
msgid "Determines how many data points an user can select on a chart."
|
458 |
msgstr "Determines how many data points an user can select on a chart."
|
459 |
|
460 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:178
|
461 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:87
|
462 |
msgid "Aggregation Target"
|
463 |
msgstr "Aggregation Target"
|
464 |
|
465 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:183
|
466 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:92
|
467 |
msgid "Group selected data by x-value"
|
468 |
msgstr "Group selected data by x-value"
|
469 |
|
470 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:184
|
471 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:93
|
472 |
msgid "Group selected data by series"
|
473 |
msgstr "Group selected data by series"
|
474 |
|
475 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:185
|
476 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:94
|
477 |
msgid ""
|
478 |
"Group selected data by x-value if all selections have the same x-value, and "
|
481 |
"Group selected data by x-value if all selections have the same x-value, and "
|
482 |
"by series otherwise"
|
483 |
|
484 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:186
|
485 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:95
|
486 |
msgid "Show only one tooltip per selection"
|
487 |
msgstr "Show only one tooltip per selection"
|
488 |
|
489 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:188
|
490 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:97
|
491 |
msgid ""
|
492 |
"Determines how multiple data selections are rolled up into tooltips. To make "
|
497 |
"it working you need to set multiple selection mode and tooltip trigger to "
|
498 |
"display it when an user selects an element."
|
499 |
|
500 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:194
|
501 |
msgid "Point Opacity"
|
502 |
msgstr "Point Opacity"
|
503 |
|
504 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:197
|
505 |
msgid ""
|
506 |
"The transparency of data points, with 1.0 being completely opaque and 0.0 "
|
507 |
"fully transparent."
|
509 |
"The transparency of data points, with 1.0 being completely opaque and 0.0 "
|
510 |
"fully transparent."
|
511 |
|
512 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:210
|
513 |
msgid "Lines Settings"
|
514 |
msgstr "Lines Settings"
|
515 |
|
516 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:227
|
517 |
#: classes/Visualizer/Render/Sidebar/Graph.php:394
|
518 |
#: classes/Visualizer/Render/Sidebar/Type/Area.php:102
|
519 |
#: classes/Visualizer/Render/Sidebar/Type/Candlestick.php:161
|
520 |
msgid "Visible In Legend"
|
521 |
msgstr "Visible In Legend"
|
522 |
|
523 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:256
|
524 |
#: classes/Visualizer/Render/Sidebar/Type/Area.php:131
|
525 |
msgid "Overrides the global line width and point size values for this series."
|
526 |
msgstr "Overrides the global line width and point size values for this series."
|
527 |
|
528 |
+
#: classes/Visualizer/Render/Sidebar/Linear.php:273
|
529 |
#: classes/Visualizer/Render/Sidebar/Graph.php:196
|
530 |
#: classes/Visualizer/Render/Sidebar/Graph.php:213
|
531 |
#: classes/Visualizer/Render/Sidebar/Graph.php:308
|
711 |
msgid "Series Settings"
|
712 |
msgstr "Series Settings"
|
713 |
|
714 |
+
#: classes/Visualizer/Render/Sidebar/Graph.php:429
|
715 |
+
msgid "Enter custom format pattern to apply to horizontal axis labels."
|
716 |
+
msgstr "Enter custom format pattern to apply to horizontal axis labels."
|
717 |
+
|
718 |
+
#: classes/Visualizer/Render/Sidebar/Graph.php:431
|
719 |
+
#: classes/Visualizer/Render/Sidebar/Graph.php:460
|
720 |
+
#, php-format
|
721 |
+
msgid ""
|
722 |
+
"For number axis labels, this is a subset of the decimal formatting %sICU "
|
723 |
+
"pattern set%s. For instance, $#,###.## will display values $1,234.56 for "
|
724 |
+
"value 1234.56. Pay attention that if you use #%% percentage format then your "
|
725 |
+
"values will be multiplied by 100."
|
726 |
+
msgstr ""
|
727 |
+
"For number axis labels, this is a subset of the decimal formatting %sICU "
|
728 |
+
"pattern set%s. For instance, $#,###.## will display values $1,234.56 for "
|
729 |
+
"value 1234.56. Pay attention that if you use #%% percentage format then your "
|
730 |
+
"values will be multiplied by 100."
|
731 |
+
|
732 |
+
#: classes/Visualizer/Render/Sidebar/Graph.php:436
|
733 |
+
#: classes/Visualizer/Render/Sidebar/Graph.php:465
|
734 |
+
#, php-format
|
735 |
+
msgid ""
|
736 |
+
"For date axis labels, this is a subset of the date formatting %sICU date and "
|
737 |
+
"time format%s."
|
738 |
+
msgstr ""
|
739 |
+
"For date axis labels, this is a subset of the date formatting %sICU date and "
|
740 |
+
"time format%s."
|
741 |
+
|
742 |
+
#: classes/Visualizer/Render/Sidebar/Graph.php:458
|
743 |
+
msgid "Enter custom format pattern to apply to vertical axis labels."
|
744 |
+
msgstr "Enter custom format pattern to apply to vertical axis labels."
|
745 |
+
|
746 |
#: classes/Visualizer/Render/Sidebar/Type/Geo.php:58
|
747 |
msgid "Map Settings"
|
748 |
msgstr "Map Settings"
|
readme.txt
CHANGED
@@ -1,20 +1,19 @@
|
|
1 |
-
=== Visualizer ===
|
2 |
-
Contributors:
|
3 |
-
|
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:
|
7 |
-
Stable tag: 1.4.2.
|
8 |
License: GPL v2.0 or later
|
9 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
10 |
|
11 |
-
A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
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.
|
16 |
|
17 |
-
The plugin uses Google Visualization API to render charts, which support cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
|
18 |
|
19 |
### 9 Chart types ###
|
20 |
The plugin provides a variety of charts that are optimized to address your data visualization needs. It is line chart, area chart, bar chart, column chart, pie chart, geo chart, gauge chart, candlestick chart and scatter chart. These charts are based on pure HTML5/SVG technology (adopting VML for old IE versions), so no extra plugins are required. Adding these charts to your page can be done in a few simple steps.
|
@@ -29,13 +28,13 @@ Charts are rendered using HTML5/SVG technology to provide cross-browser compatib
|
|
29 |
|
30 |
### Knowledge Base ###
|
31 |
|
32 |
-
1. [How can I create a chart?](https://github.com/
|
33 |
-
1. [How can I edit a chart?](https://github.com/
|
34 |
-
1. [How can I clone a chart?](https://github.com/
|
35 |
-
1. [How can I delete a chart?](https://github.com/
|
36 |
-
1. [How can I highlight a single bar?](https://github.com/
|
37 |
-
1. [How can I populate chart series and data dynamically?](https://github.com/
|
38 |
-
1. [How can I populate data from Google Spreadsheet?](https://github.com/
|
39 |
|
40 |
== Installation ==
|
41 |
|
@@ -58,6 +57,9 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
61 |
= 1.4.2.2 =
|
62 |
* Added ability to pass a class for chart wrapper div
|
63 |
* Added proper label for custom post type
|
1 |
+
=== Visualizer: Charts and Graphs ===
|
2 |
+
Contributors: codeinwp,marius2012,marius_codeinwp,hardeepasrani,themeisle,Madalin_ThemeIsle
|
3 |
+
Tags: plugin,widget,shortcode,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
|
|
|
4 |
Requires at least: 3.5
|
5 |
+
Tested up to: 4.2.2
|
6 |
+
Stable tag: 1.4.2.3
|
7 |
License: GPL v2.0 or later
|
8 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
9 |
|
10 |
+
A simple, easy to use and quite powerful chart tool to create, manage and embed interactive charts into your WordPress posts and pages.
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
WordPress Visualizer Charts plugin is a simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages.
|
15 |
|
16 |
+
The plugin uses Google Visualization API to render Google charts, which support cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
|
17 |
|
18 |
### 9 Chart types ###
|
19 |
The plugin provides a variety of charts that are optimized to address your data visualization needs. It is line chart, area chart, bar chart, column chart, pie chart, geo chart, gauge chart, candlestick chart and scatter chart. These charts are based on pure HTML5/SVG technology (adopting VML for old IE versions), so no extra plugins are required. Adding these charts to your page can be done in a few simple steps.
|
28 |
|
29 |
### Knowledge Base ###
|
30 |
|
31 |
+
1. [How can I create a chart?](https://github.com/codeinwp/visualizer/wiki/How-can-I-create-a-chart%3F)
|
32 |
+
1. [How can I edit a chart?](https://github.com/codeinwp/visualizer/wiki/How-can-I-edit-a-chart%3F)
|
33 |
+
1. [How can I clone a chart?](https://github.com/codeinwp/visualizer/wiki/How-can-I-clone-a-chart%3F)
|
34 |
+
1. [How can I delete a chart?](https://github.com/codeinwp/visualizer/wiki/How-can-I-delete-a-chart%3F)
|
35 |
+
1. [How can I highlight a single bar?](https://github.com/codeinwp/visualizer/wiki/How-can-I-highlight-a-single-bar%3F)
|
36 |
+
1. [How can I populate chart series and data dynamically?](https://github.com/codeinwp/visualizer/wiki/How-can-I-populate-chart-series-and-data-dynamically%3F)
|
37 |
+
1. [How can I populate data from Google Spreadsheet?](https://github.com/codeinwp/visualizer/wiki/How-can-I-populate-data-from-Google-Spreadsheet%3F)
|
38 |
|
39 |
== Installation ==
|
40 |
|
57 |
|
58 |
== Changelog ==
|
59 |
|
60 |
+
= 1.4.2.3 =
|
61 |
+
* Implemented ability to edit horizontal and vertical axis number format for bar and column charts
|
62 |
+
|
63 |
= 1.4.2.2 =
|
64 |
* Added ability to pass a class for chart wrapper div
|
65 |
* Added proper label for custom post type
|