Whatever message this page gives is out now! Go check it out!
<cfchart format="html" type="scatter" showMarkers ="true"
showLegend="FALSE" width="600" height="400" title="Scatter plot">
<cfchartseries>
<cfchartdata item = "2015" value = 20 >
<cfchartdata item = "2016" value = 27 >
<cfchartdata item = "2017" value = 19 >
<cfchartdata item = "2018" value = 80 >
<cfchartdata item = "2019" value = 56 >
<cfchartdata item = "2020" value = 39 >
<cfchartdata item = "2021" value = 91 >
<cfchartdata item = "2022" value = 71 >
<cfchartdata item = "2023" value = 28 >
</cfchartseries>
</cfchart><cfquery name="getEmployeeData" datasource="cfdocexamples">
SELECT emp_id, Salary
FROM employee
WHERE EMP_ID < 1955
</cfquery>
<cfchart format="html" chartheight="400" chartwidth="600" title="Employee ID vs Salary Scatter Plot" showLegend="FALSE">
<cfchartseries type="scatter" query="getEmployeeData" itemColumn="Emp_ID" valueColumn="Salary"/>
</cfchart>