Skip to content
Snippets Groups Projects
Commit fa04c925 authored by Kevin Hill's avatar Kevin Hill
Browse files

[ci skip] Create VizProps on the fly so the maps are not attached to the chart object

parent f347008a
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Loading
Loading
@@ -54,8 +54,6 @@ export default class Renderable
if (! this.element) {
throw new ElementIdNotFound(this.elementId);
}
this._vizProps = new VisualizationProps(this.type);
}
 
/**
Loading
Loading
@@ -65,7 +63,9 @@ export default class Renderable
*/
get class()
{
return this._vizProps.class
let vizProps = new VisualizationProps(this.type);
return vizProps.class;
}
 
/**
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment