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/Sidebar/Type/Candlestick.php
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,34 @@ protected function _renderLineSettings() {
68
68
),
69
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 )
'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 )
0 commit comments