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
Copy file name to clipboardExpand all lines: classes/Visualizer/Render/Page/Data.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ protected function _renderSidebarContent() {
98
98
<li class="viz-subsection">
99
99
<span class="viz-section-title"><?php_e( 'One time import', 'visualizer' ); ?></span>
100
100
101
-
<div class="viz-section-items">
101
+
<div class="viz-section-items section-items">
102
102
<p class="viz-group-description"><?php_e( 'You can use this to import data from a remote CSV file. The first row of the CSV file should contain the column headings. The second one should contain series type (string, number, boolean, date, datetime, timeofday).', 'visualizer' ); ?> </p>
103
103
<p class="viz-group-description"><?phpechosprintf( __( 'If you are unsure about how to format your data CSV then please take a look at this sample: %1$s %2$s%3$s', 'visualizer' ), '<a href="' . VISUALIZER_ABSURL . 'samples/' . $this->type . '.csv" target="_blank">', $this->type, '.csv</a>' ); ?></p>
104
104
<p class="viz-group-description"> <?php_e( 'You can also import data from Google Spreadsheet, for more info check <a href="https://github.com/Codeinwp/visualizer/wiki/How-can-I-populate-data-from-Google-Spreadsheet%3F" target="_blank" >this</a> tutorial', 'visualizer' ); ?></p>
<p class="viz-group-description"><?php_e( 'You can choose here to synchronize your chart data with a remote CSV file.', 'visualizer' ); ?> </p>
124
124
<p class="viz-group-description"> <?php_e( 'You can also synchronize with your Google Spreadsheet file, for more info check <a href="https://github.com/Codeinwp/visualizer/wiki/How-can-I-populate-data-from-Google-Spreadsheet%3F" target="_blank" >this</a> tutorial', 'visualizer' ); ?></p>
125
125
<p class="viz-group-description"> <?php_e( 'We will update the chart data based on your time interval preference by overwritting the current data with the one from the URL.', 'visualizer' ); ?></p>
$disabled ? '<span class="section-error">' . esc_html__( 'Enable the ZIP and XML extensions to use this setting.', 'visualizer' ) . '</span>' : esc_html__( 'To enable downloading the data as an Excel spreadsheet.', 'visualizer' ),
217
+
$disabled ? '<span class="viz-section-error">' . esc_html__( 'Enable the ZIP and XML extensions to use this setting.', 'visualizer' ) . '</span>' : esc_html__( 'To enable downloading the data as an Excel spreadsheet.', 'visualizer' ),
esc_html_e( 'Data line width and diameter of displayed points in pixels. Use zero to hide all lines or points.', 'visualizer' );
150
150
echo'</p>';
151
151
echo'</div>';
@@ -160,7 +160,7 @@ protected function _renderLineSettingsItems() {
160
160
);
161
161
}
162
162
163
-
echo'<div class="section-delimiter"></div>';
163
+
echo'<div class="viz-section-delimiter"></div>';
164
164
165
165
if ( $this->_includeFocusTarget ) {
166
166
self::_renderSelectItem(
@@ -202,7 +202,7 @@ protected function _renderLineSettingsItems() {
202
202
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' )
203
203
);
204
204
205
-
echo'<div class="section-delimiter"></div>';
205
+
echo'<div class="viz-section-delimiter"></div>';
206
206
207
207
self::_renderTextItem(
208
208
esc_html__( 'Point Opacity', 'visualizer' ),
@@ -249,24 +249,24 @@ protected function _renderSeries( $index ) {
249
249
esc_html__( 'Determines whether the series has to be presented in the legend or not.', 'visualizer' )
esc_html_e( 'The lowest and highest values for a range marked by a red color.', 'visualizer' );
207
207
echo'</p>';
208
208
echo'</div>';
@@ -229,22 +229,22 @@ protected function _renderViewSettings() {
229
229
self::_renderSectionStart();
230
230
self::_renderSectionDescription( esc_html__( 'Configure the total size of the chart. Two formats are supported: a number, or a number followed by %. A simple number is a value in pixels; a number followed by % is a percentage.', 'visualizer' ) );
0 commit comments