SmartClient Version: v9.1p_2014-08-31/Pro Deployment (built 2014-08-31)
Quick question. We declare our properties for FacetCharts in a static way rather always creating a new properties objects. Just want to confirm there are no problems with doing this.
Thanks
Quick question. We declare our properties for FacetCharts in a static way rather always creating a new properties objects. Just want to confirm there are no problems with doing this.
Code:
protected static final DrawRect BAR_PROPERTIES = new DrawRect(); static { BAR_PROPERTIES.setLineOpacity(0); }
Comment