Whatever message this page gives is out now! Go check it out!

Create a funnel chart in ColdFusion

Last update:
May 18, 2026
A funnel chart shows the flow of users through different stages of a process, starting wide at the top and narrowing down. It highlights areas of drop-off and conversion rates.
Use funnel charts to visualize sales conversions, marketing campaigns, customer journeys, or other conversion rates.
Example
<cfchart format="html" type="funnel" showlegend="false" chartHeight="600" chartWidth="800" title="Funnel Chart">
    <cfchartseries>
        <cfchartdata item="Applied" value=120>
        <cfchartdata item="Qualified" value=63>
        <cfchartdata item="First touch" value=38>
        <cfchartdata item="Interview" value=24>
        <cfchartdata item="Hired" value=8>
    </cfchartseries>
</cfchart>
Output
Example - horizontal funnel chart
<cfchart format="html" type="hfunnel" showlegend="false" chartHeight="600" chartWidth="800" title="Funnel Chart">
    <cfchartseries>
        <cfchartdata item="Applied" value=120>
        <cfchartdata item="Qualified" value=63>
        <cfchartdata item="First touch" value=38>
        <cfchartdata item="Interview" value=24>
        <cfchartdata item="Hired" value=8>
    </cfchartseries>
</cfchart>
Output

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page