| FusionCharts ASP Class API >HTML Embedding |
|
Here we create a chart using HTML embedding method. We don't need to include FusionCharts.js - FusionCharts JavaScript Embedding Class. Let's see how to use FusionCharts ASP Class to create a chart through HTML embedding method: |
<html>
<head>
<title>Render as HTML Using FusionCharts ASP Class</title>
</head>
<body>
<%@LANGUAGE="VBSCRIPT"%>
<%
' Include FusionCharts ASP Class
%>
<!--#include file="../Class/FusionCharts_Gen.asp"-->
<%
dim FC
...
' Pass True to renderChart() function
' to use HTML Embedding Method.
' This is helpful if you wish not use FusionCharts.js
' or when rendering the chart using AJAX
Call FC.renderChart(True)
%>
</body>
</html> |
Let's analyze the steps involved in the above code:
|