Status/Resolution/Reason: To Test//HaveNewInfo
Reporter/Name(from Bugbase): Priyank Shrivastava / ()
Created: 07/23/2018
Components: Charting/Graphing, Documentation
Versions: 2018
Failure Type: Incorrectly functioning
Found In Build/Fixed In Build: 310739 /
Priority/Frequency: Major / Most users will encounter
Locale/System: English / Win 2016
Vote Count: 2
Problem Description: Cfchart type="html" does not work when using <!DOCTYPE html>
Steps to Reproduce:
<!DOCTYPE html>
<cfchart format="html" type="bar" showlegend="false" chartHeight="400" chartWidth="600" title="Sales report">
<cfchartseries>
<cfchartdata item="2012" value=#randrange(10,100)#>
<cfchartdata item="2013" value=#randrange(10,100)#>
<cfchartdata item="2014" value=#randrange(10,100)#>
<cfchartdata item="2015" value=#randrange(10,100)#>
<cfchartdata item="2016" value=#randrange(10,100)#>
<cfchartdata item="2017" value=#randrange(10,100)#>
</cfchartseries>
</cfchart>
Actual Result: It is showing the blank page.
Expected Result: it should display the chart.
Any Workarounds: Remove the <!DOCTYPE html> from the code.
Attachments:
Comments: