Developer


WCW Configuration

Use this configuration to

  • Control the behavoir of WCW window
  • Specify the chart data source, from HTML table, data string or server
  • Set user permissions to perform certain function

To configure the WCW, first you create an instance of configuration. And then just call the setter methods. for example.

<script type="text/javascript">
	var config = new WCWConfig();
	config.setChartTitle('This is my Chart Title');
	
	WCWizard.show(null, config);
</script>

After you set the properties, you just pass the config as second parameter to show the WCW. The first parameter is the image element and could be null. You can view our demo page to see various usage.

WCW Configuration API