PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.4
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.4
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | classes/Visualizer/Gutenberg/src/Components/Sidebar.js +21 -7 3.1.03.4.4 View file →
@@ -19,8 +19,10 @@
19 19 import RowCellSettings from './Sidebar/RowCellSettings.js';
20 20 import ComboSettings from './Sidebar/ComboSettings.js';
21 21 import SeriesSettings from './Sidebar/SeriesSettings.js';
22 22 import SlicesSettings from './Sidebar/SlicesSettings.js';
23 +import BubbleSettings from './Sidebar/BubbleSettings.js';
24 +import ColumnSettings from './Sidebar/ColumnSettings.js';
23 25 import LayoutAndChartArea from './Sidebar/LayoutAndChartArea.js';
24 26 import FrontendActions from './Sidebar/FrontendActions.js';
25 27 import ManualConfiguration from './Sidebar/ManualConfiguration.js';
26 28
@@ -45,13 +47,13 @@
45 47 <Fragment>
46 48
47 49 <GeneralSettings chart={ this.props.chart } edit={ this.props.edit } />
48 50
49 - { ( -1 >= [ 'table', 'gauge', 'geo', 'pie', 'timeline' ].indexOf( type ) ) && (
51 + { ( -1 >= [ 'table', 'gauge', 'geo', 'pie', 'timeline', 'dataTable' ].indexOf( type ) ) && (
50 52 <HorizontalAxisSettings chart={ this.props.chart } edit={ this.props.edit } />
51 53 ) }
52 54
53 - { ( -1 >= [ 'table', 'gauge', 'geo', 'pie', 'timeline' ].indexOf( type ) ) && (
55 + { ( -1 >= [ 'table', 'gauge', 'geo', 'pie', 'timeline', 'dataTable' ].indexOf( type ) ) && (
54 56 <VerticalAxisSettings chart={ this.props.chart } edit={ this.props.edit } />
55 57 ) }
56 58
57 59 { ( 0 <= [ 'pie' ].indexOf( type ) ) && (
@@ -97,9 +99,9 @@
97 99 { ( 0 <= [ 'timeline' ].indexOf( type ) ) && (
98 100 <TimelineSettings chart={ this.props.chart } edit={ this.props.edit } />
99 101 ) }
100 102
101 - { ( 0 <= [ 'table' ].indexOf( type ) ) && (
103 + { ( 0 <= [ 'table', 'dataTable' ].indexOf( type ) ) && (
102 104 <Fragment>
103 105
104 106 <TableSettings chart={ this.props.chart } edit={ this.props.edit } />
105 107
@@ -111,22 +113,34 @@
111 113 { ( 0 <= [ 'combo' ].indexOf( type ) ) && (
112 114 <ComboSettings chart={ this.props.chart } edit={ this.props.edit } />
113 115 ) }
114 116
115 - { ( -1 >= [ 'timeline', 'gauge', 'geo', 'pie' ].indexOf( type ) ) && (
117 + { ( -1 >= [ 'timeline', 'bubble', 'gauge', 'geo', 'pie', 'dataTable' ].indexOf( type ) ) && (
116 118 <SeriesSettings chart={ this.props.chart } edit={ this.props.edit } />
117 119 ) }
118 120
121 + { ( 0 <= [ 'bubble' ].indexOf( type ) ) && (
122 + <BubbleSettings chart={ this.props.chart } edit={ this.props.edit } />
123 + ) }
124 +
125 +
119 126 { ( 0 <= [ 'pie' ].indexOf( type ) ) && (
120 127 <SlicesSettings chart={ this.props.chart } edit={ this.props.edit } />
121 128 ) }
122 129
123 - <LayoutAndChartArea chart={ this.props.chart } edit={ this.props.edit } />
130 + { ( 0 <= [ 'dataTable' ].indexOf( type ) ) && (
131 + <ColumnSettings chart={ this.props.chart } edit={ this.props.edit } />
132 + ) }
124 133
134 + { ( -1 >= [ 'dataTable' ].indexOf( type ) ) && (
135 + <LayoutAndChartArea chart={ this.props.chart } edit={ this.props.edit } />
136 + ) }
137 +
125 138 <FrontendActions chart={ this.props.chart } edit={ this.props.edit } />
126 139
127 - <ManualConfiguration chart={ this.props.chart } edit={ this.props.edit } />
128 -
140 + { ( -1 >= [ 'dataTable' ].indexOf( type ) ) && (
141 + <ManualConfiguration chart={ this.props.chart } edit={ this.props.edit } />
142 + ) }
129 143 </Fragment>
130 144 );
131 145 }
132 146 }