This topic is locked
[SOLVED]

 ASPruner.Net 10.4 Charts

4/29/2020 8:04:59 PM
PHPRunner General questions
Lowkeck authorDevClub member

Is there anyway to change the colors used in the charts(Pie, Bar, Line, etc)?

I am trying to setup a Sales Funnel Chart using the "Accumulation" chart but I cannot figure out how to use a Cone Chart. It only displays a Pyramid. Any ideas of how to change this?

D
DealerModulesDevClub member 4/29/2020
Lowkeck authorDevClub member 4/30/2020

Perfect. Thank you!

R
RBrogen 6/2/2020

I found this link very useful, specifically the formatting chart results as currency. I modified the code in the manual a bit so that it fully formatted numbers as currency with commas in the appropriate places and the $ by adding the .replace code below.
chart.labels().format (function(){

var num = Number( this.value );

return(("$"+ num.toFixed(2).replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,')));

});