@datarailsshared/dr_renderer 1.5.168 → 1.5.171
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -183,8 +183,6 @@ export class GraphTableRenderer {
|
|
|
183
183
|
* This includes:
|
|
184
184
|
* - Destroying the Highcharts instance (if exists)
|
|
185
185
|
* - Calling destroy on table result (freeze panes observers, Handsontable instances, etc.)
|
|
186
|
-
* - Disposing the pivot model
|
|
187
|
-
* - Resetting internal state
|
|
188
186
|
* @returns {void}
|
|
189
187
|
*/
|
|
190
188
|
destroy() {
|
|
@@ -208,11 +206,6 @@ export class GraphTableRenderer {
|
|
|
208
206
|
}
|
|
209
207
|
}
|
|
210
208
|
this.#tableResult = null;
|
|
211
|
-
|
|
212
|
-
this.disposePivotModel();
|
|
213
|
-
|
|
214
|
-
this.#options = null;
|
|
215
|
-
this.#rows = [];
|
|
216
209
|
}
|
|
217
210
|
}
|
|
218
211
|
|