CFCHARTformat=png image not loading on browser
I have created a simple horizontal bar chart using cfchart by following code:
<cfchart chartheight="300" chartwidth="400" showxgridlines="no" showygridlines="no" showborder="no" fontbold="no" fontitalic="no" show3d="no" rotated="no" sortxaxis="no" showlegend="no" showmarkers="no" format="png" scalefrom="0" scaleto="5" font="arial" fontsize="14" xoffset="290" >
<cfchartseries type="horizontalbar" serieslabel="Ratings" seriescolor="yellow" >
<cfchartdata item="Overall Average" value="4" >
<cfchartdata item="Peer" value="5" >
<cfchartdata item="Direct Report" value="3.7" >
<cfchartdata item="Other" value="2.7" >
<cfchartdata item="Manager" value="4.2" >
<cfchartdata item="Self" value="3" >
</cfchartseries>
</cfchart>
Also, I'm chart is getting generated but if I'm loading the same image in a new tab then it's failing to load with 404 error.
From the html inspect it looks like the chart generated by HTML5 map element not by the png image. And if I'm using the chart inside a pdf reporting then it's not working.
Thanks in advance!
