Page 1 of 1

Radar Report

PostPosted: Wed Sep 19, 2012 3:51 pm
by JeffKimmel
I was looking at the forum questions & there was talk of a radar report & then it showed a sample. I've looked in the list of reports available to me & it's not listed there. Has it been taken out or is it labelled something different in the menu?

Thanks,
Jeff Kimmel

Re: Radar Report

PostPosted: Wed Sep 19, 2012 4:56 pm
by Bob Cergol
Hi Jeff,

I typed in 'radar' in the search box and it showed me 3 posts, including the one you just made -- and the one you're looking for. Not sure if this link will work but it's dated 12/14/2011 with subject "Radar chart"
Maybe this link will take you to it. The answer to the question was you can make one by using the chart editing control.
http://support.dynamicai.com/forum/viewtopic.php?f=3&t=481&p=1362&hilit=radar#p1362

Regards,
Bob

Re: Radar Report

PostPosted: Fri Sep 21, 2012 3:33 pm
by JeffKimmel
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

Re: Radar Report

PostPosted: Sun Sep 23, 2012 11:21 pm
by Carsten Sørensen
Hi Jeff and Bob,

6 4 81 will be released tonight with Polar and Spider chart styles available.

Best regards,
Carsten

Re: Radar Report

PostPosted: Wed Sep 26, 2012 5:36 pm
by JeffKimmel
Carsten,

Thanks, that looks great!!

jeff