by JeffKimmel » Fri Sep 21, 2012 3:33 pm
Thanks Bob,
In hopes that this might help someone down the road I ended up with the attached radar chart. Below are the 'rules' I used in the rules tab:
//Need to include the highchart-more.js script in the HTML
//This will break in DI changes the id of the body
var newScript = document.createElement('script');
newScript.type = 'text/javascript';
newScript.src = './images/hc/highcharts-more.js';
var myBody = document.getElementById("BD");
myBody.appendChild(newScript);
//Create the new 'theme', a polar chart...
Highcharts.theme = {
chart: {
type: 'line',
polar: true
}
};
//apply the chart options...
var highchartsOptions = Highcharts.setOptions(Highcharts.theme);
Regards,
Jeff
- Attachments
-
- Sample.png (34.92 KiB) Viewed 29790 times