NetCharts® Server: Example Chart With NDS Query for ColdFusion
This example inserts an interactive PNG image of a radarchart into the page. The chart comes from a chart template named RadarChart.cdx, which is located in a project called "Examples/Charts" residing on a NetCharts Server running on localhost, port 8001.
The RadarChart.cdx chart template contains NetCharts Server Named Data Set (NDS) references. These NDS calls are responsible for interacting with a data source and extracting the data to be plotted. No CFML-based interaction with the data source is necessary. See the source code.

Source Code:
<!---
ChartWithNDSQuery.cfm
Visual Mining, Inc.This example inserts an interactive PNG image of a radarchart into the page The chart comes from a chart template named RadarChart.cdx, which is located in a project called "Examples/Charts" residing on a NetCharts Server running on localhost, port 8001.
The RadarChart.cdx chart template contains NetCharts Server Named Data Set (NDS) references. These NDS calls are responsible for interacting with a data source and extracting the data to be plotted. No CFML based interaction with the data source is necessary.
The HTML code resulting from exectuing this tag will contain a IMG tag for the chart image, a MAP tag for the image map, and some javascript to implement the mouse roll-over labels.
--->
<html>
<body>
<cf_ncchart project="Examples/Charts" server="localhost" port="8001" chart="RadarChart.cdx">
</cf_ncchart></body>
</html>
![]()



