ChartDirector 7.0 (ASP/COM/VB Edition)

Symbol Line Chart




This example demonstrates using symbols to represent data points, and putting data labels on top of the symbols.

Note that in this example, the chart title background is not a solid color but a 1 x 2 pixels pattern.

Source Code Listing

[Web Version (in ASP)] aspdemo\symbolline.asp
<%@ language="vbscript" %> <% Set cd = CreateObject("ChartDirector.API") ' The data for the line chart data0 = Array(60.2, 51.7, 81.3, 48.6, 56.2, 68.9, 52.8) data1 = Array(30.0, 32.7, 33.9, 29.5, 32.2, 28.4, 29.8) labels = Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat") ' Create a XYChart object of size 300 x 180 pixels, with a pale yellow (0xffffc0) background, a ' black border, and 1 pixel 3D border effect. Set c = cd.XYChart(300, 180, &Hffffc0, &H000000, 1) ' Set the plotarea at (45, 35) and of size 240 x 120 pixels, with white background. Turn on both ' horizontal and vertical grid lines with light grey color (0xc0c0c0) Call c.setPlotArea(45, 35, 240, 120, &Hffffff, -1, -1, &Hc0c0c0, -1) ' Add a legend box at (45, 12) (top of the chart) using horizontal layout and 8pt Arial font Set the ' background and border color to Transparent. Call c.addLegend(45, 12, False, "", 8).setBackground(cd.Transparent) ' Add a title to the chart using 9pt Arial Bold/white font. Use a 1 x 2 bitmap pattern as the ' background. Call c.addTitle("Server Load (Jun 01 - Jun 07)", "Arial Bold", 9, &Hffffff).setBackground( _ c.patternColor(Array(&H004000, &H008000), 2)) ' Set the y axis label format to nn% Call c.yAxis().setLabelFormat("{value}%") ' Set the labels on the x axis Call c.xAxis().setLabels(labels) ' Add a line layer to the chart Set layer = c.addLineLayer() ' Add the first line. Plot the points with a 7 pixel square symbol Call layer.addDataSet(data0, &Hcf4040, "Peak").setDataSymbol(cd.SquareSymbol, 7) ' Add the second line. Plot the points with a 9 pixel dismond symbol Call layer.addDataSet(data1, &H40cf40, "Average").setDataSymbol(cd.DiamondSymbol, 9) ' Enable data label on the data points. Set the label format to nn%. Call layer.setDataLabelFormat("{value|0}%") ' Output the chart Set viewer = cd.WebChartViewer(Request, "chart1") Call viewer.setChart(c, cd.SVG) ' Include tool tip for the chart viewer.ImageMap = c.getHTMLImageMap("", "", "title='{xLabel}: {dataSetName} {value}%'") %> <!DOCTYPE html> <html> <head> <title>Symbol Line Chart</title> <!-- Include ChartDirector Javascript Library to support chart interactions --> <script type="text/javascript" src="cdjcv.js"></script> </head> <body style="margin:5px 0px 0px 5px"> <div style="font:bold 18pt verdana;"> Symbol Line Chart </div> <hr style="border:solid 1px #000080; background:#000080" /> <div style="font:10pt verdana; margin-bottom:1.5em"> <a href="viewsource.asp?file=<%= Request("SCRIPT_NAME") %>">View Chart Source Code</a> </div> <!-- ****** Here is the chart image ****** --> <%= viewer.renderHTML() %> </body> </html>

[Windows Version (in Visual Basic)] vbdemo\symbolline.cls
Public Sub createChart(viewer As Object, chartIndex As Integer) Dim cd As New ChartDirector.API ' The data for the line chart Dim data0() data0 = Array(60.2, 51.7, 81.3, 48.6, 56.2, 68.9, 52.8) Dim data1() data1 = Array(30.0, 32.7, 33.9, 29.5, 32.2, 28.4, 29.8) Dim labels() labels = Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat") ' Create a XYChart object of size 300 x 180 pixels, with a pale yellow (0xffffc0) background, a ' black border, and 1 pixel 3D border effect. Dim c As XYChart Set c = cd.XYChart(300, 180, &Hffffc0, &H000000, 1) ' Set the plotarea at (45, 35) and of size 240 x 120 pixels, with white background. Turn on both ' horizontal and vertical grid lines with light grey color (0xc0c0c0) Call c.setPlotArea(45, 35, 240, 120, &Hffffff, -1, -1, &Hc0c0c0, -1) ' Add a legend box at (45, 12) (top of the chart) using horizontal layout and 8pt Arial font Set ' the background and border color to Transparent. Call c.addLegend(45, 12, False, "", 8).setBackground(cd.Transparent) ' Add a title to the chart using 9pt Arial Bold/white font. Use a 1 x 2 bitmap pattern as the ' background. Call c.addTitle("Server Load (Jun 01 - Jun 07)", "arialbd.ttf", 9, &Hffffff).setBackground( _ c.patternColor(Array(&H004000, &H008000), 2)) ' Set the y axis label format to nn% Call c.yAxis().setLabelFormat("{value}%") ' Set the labels on the x axis Call c.xAxis().setLabels(labels) ' Add a line layer to the chart Dim layer As LineLayer Set layer = c.addLineLayer() ' Add the first line. Plot the points with a 7 pixel square symbol Call layer.addDataSet(data0, &Hcf4040, "Peak").setDataSymbol(cd.SquareSymbol, 7) ' Add the second line. Plot the points with a 9 pixel dismond symbol Call layer.addDataSet(data1, &H40cf40, "Average").setDataSymbol(cd.DiamondSymbol, 9) ' Enable data label on the data points. Set the label format to nn%. Call layer.setDataLabelFormat("{value|0}%") ' Output the chart Set viewer.Picture = c.makePicture() 'include tool tip for the chart viewer.ImageMap = c.getHTMLImageMap("clickable", "", _ "title='{xLabel}: {dataSetName} {value}%'") End Sub