You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Fixes:
- Fix compatibility with 3rd party plugins which use the same js library as Visualizer #801
- Fix fatal error when a new chart is created on PHP 8 #795
- Chart doesn't get refreshed automatically when the JSON endpoint is used as the data source
#### Features:
- Adds option to add schema.org Dataset for license and creator #794
This repository uses conventional [changelog commit](https://github.com/Codeinwp/conventional-changelog-simple-preset) messages to trigger release
4
+
5
+
How to release a new version:
6
+
7
+
- Clone the master branch
8
+
- Do your changes
9
+
- Send a PR to master and merge it using the following subject message
10
+
-`release: <release short description>` - for patch release
11
+
-`release(minor): <release short description>` - for minor release
12
+
-`release(major): <release short description>` - for major release
13
+
The release notes will inherit the body of the commit message which triggered the release. For more details check the [simple-preset](https://github.com/Codeinwp/conventional-changelog-simple-preset) that we use.
Copy file name to clipboardExpand all lines: classes/Visualizer/Render/Sidebar/Type/GoogleCharts/Gauge.php
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,28 @@ protected function _renderGeneralSettings() {
78
78
$this->title,
79
79
esc_html__( 'Text to display in the back-end admin area.', 'visualizer' )
80
80
);
81
+
82
+
self::_renderTextAreaItem(
83
+
esc_html__( 'Chart Description', 'visualizer' ),
84
+
'description',
85
+
$this->description,
86
+
sprintf( esc_html__( 'Description to display in the structured data schema as explained %1$shere%2$s', 'visualizer' ), '<a href="https://developers.google.com/search/docs/data-types/dataset#dataset" target="_blank">', '</a>' )
Copy file name to clipboardExpand all lines: classes/Visualizer/Render/Sidebar/Type/GoogleCharts/Geo.php
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,27 @@ protected function _renderGeneralSettings() {
64
64
$this->title,
65
65
esc_html__( 'Text to display in the back-end admin area.', 'visualizer' )
66
66
);
67
+
self::_renderTextAreaItem(
68
+
esc_html__( 'Chart Description', 'visualizer' ),
69
+
'description',
70
+
$this->description,
71
+
sprintf( esc_html__( 'Description to display in the structured data schema as explained %1$shere%2$s', 'visualizer' ), '<a href="https://developers.google.com/search/docs/data-types/dataset#dataset" target="_blank">', '</a>' )
Copy file name to clipboardExpand all lines: classes/Visualizer/Render/Sidebar/Type/GoogleCharts/Tabular.php
+21-1Lines changed: 21 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -73,8 +73,28 @@ protected function _renderGeneralSettings() {
73
73
$this->title,
74
74
esc_html__( 'Text to display in the back-end admin area.', 'visualizer' )
75
75
);
76
+
self::_renderTextAreaItem(
77
+
esc_html__( 'Chart Description', 'visualizer' ),
78
+
'description',
79
+
$this->description,
80
+
sprintf( esc_html__( 'Description to display in the structured data schema as explained %1$shere%2$s', 'visualizer' ), '<a href="https://developers.google.com/search/docs/data-types/dataset#dataset" target="_blank">', '</a>' )
0 commit comments