- ColdFusion Developers Guide
- Develop ColdFusion applications
- Introducing ColdFusion
- Changes in ColdFusion
- Changes in ColdFusion
- Replacement of JRun with Tomcat
- Security enhancements
- ColdFusion WebSocket
- Enhanced Java integration
- ColdFusion ORM search for indexing and search
- Solr enhancements
- Scheduler enhancements
- Integration with Microsoft Exchange Server 2010
- RESTful Web Services in ColdFusion
- Lazy loading across client and server in ColdFusion
- Web service enhancements
- Displaying geolocation
- Client-side charting
- Caching enhancements
- Server update using ColdFusion Administrator
- Secure Profile for ColdFusion Administrator
- Introduction to application development
- The CFML programming language
- Building blocks of ColdFusion applications
- Develop CFML applications
- Develop CFML applications
- Design and optimize a ColdFusion application
- Handle errors
- Use persistent data and locking
- Use ColdFusion threads
- Secure applications
- Client-side CFML (for mobile development)
- Use the ColdFusion debugger
- Debugging and Troubleshooting Applications
- Develop globalized applications
- REST enhancements in ColdFusion
- Authentication through OAuth
- Social enhancements
- Develop mobile applications
- Access and use data
- ColdFusion ORM
- ColdFusion and HTML5
- Flex and AIR integration in ColdFusion
- Request and present information
- Office file interoperability
- ColdFusion portlets
- Work with documents, charts, and reports
- Use web elements and external objects
- Use external resources
- Send and receive e-mail
- Interact with Microsoft Exchange servers
- Interact with remote servers
- Manage files on the server
- Use event gateways
- Create custom event gateways
- Use the ColdFusion extensions for Eclipse
- Use the data services messaging event gateway
- Use the data management event gateway
- Use the FMS event gateway
- Use the instant messaging event gateways
- Use the SMS event gateway
The server-side charting introduced in ColdFusion 10 that allowed you to create highly interactive charts has been further enhanced to produce visually more appealing charts.
Note that you will see some changes in the default look and feel of server-side charts because of the new underlying charting engine. This would mean you might need to make some changes to your existing charting code.
Note that the new look and feel will not be available for the following tag attributes:
cfchart
- labelFormat
- seriesPlacement with percent as the value
- sortXAxis
- tipStlye
- xAxisType
- yAxisType
- xOffset
- yOffset
cfchartseries
- markerStyle: letterx , mcross , snow, and rcross .
- paintStyle
ColdFusion 11 provides a utility to convert XML styles (used by the old charting system) to JSON styles (used by the new charting system).
To perform this conversion, you need to use cfchart_xmltojson.bat (or cfchart_xmltojson.sh) available in <cfusion_home>/bin folder:
cfchart_xmltojson.bat <xml_file_path> |
Before you can use the cfchart_xmltojson utility in the J2EE configuration, set the CFUSION_HOME, WEBINF variables and set the path of jsp-api.jar to the right one in cfchart_xmltojson.sh/cfchart_xmltojson.bat file.
The converted JSON style will be created in the same location as the XML file.
See this document for usage examples.