Example: /ChartDirector/multiline

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

/ChartDirector/multiline


Required plugins for this example: MBS ChartDirector Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /ChartDirector/multiline

This example is the version from Sun, 17th Mar 2012.

Project "multiline.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
End Class
Class PicWindow Inherits Window
EventHandler Sub Open() // The data for the line chart dim data0(-1) as double = array(42, 49, 33, 38, 51, 46, 29, 41, 44, 57, 59, 52, 37, 34, 51, 56, 56, 60, 70, 76, 63, 67, 75, 64, 51.0) dim data1(-1) as double = array(50, 55, 47, 34, 42, 49, 63, 62, 73, 59, 56, 50, 64, 60, 67, 67, 58, 59, 73, 77, 84, 82, 80, 84, 98.0) dim data2(-1) as double = array(36, 28, 25, 33, 38, 20, 22, 30, 25, 33, 30, 24, 28, 15, 21, 26, 46, 42, 48, 45, 43, 52, 64, 60, 70.0) // The labels for the line chart dim labels(-1) as string = array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24") // Create an XYChart object of size 600 x 300 pixels, with a light blue (EEEEFF) // background, black border, 1 pxiel 3D border effect and rounded corners dim c as new CDXYChartMBS(600, 300, &heeeeff, &h000000, 1) c.setRoundedFrame // Set the plotarea at (55, 58) and of size 520 x 195 pixels, with white // background. Turn on both horizontal and vertical grid lines with light grey // color (0xcccccc) call c.setPlotArea(55, 58, 520, 195, &hffffff, -1, -1, &hcccccc, &hcccccc) // Add a legend box at (50, 30) (top of the chart) with horizontal layout. Use 9 // pts Arial Bold font. Set the background and border color to Transparent. c.addLegend(50, 30, false, "arialbd.ttf", 9).setBackground(c.kTransparent) // Add a title box to the chart using 15 pts Times Bold Italic font, on a light // blue (CCCCFF) background with glass effect. white (0xffffff) on a dark red // (0x800000) background, with a 1 pixel 3D border. call c.addTitle("Application Server Throughput", "timesbi.ttf", 15).setBackground(&hccccff, &h000000, c.glassEffect) // Add a title to the y axis call c.yAxis.setTitle("MBytes per hour") // Set the labels on the x axis. call c.xAxis.setLabels(labels) // Display 1 out of 3 labels on the x-axis. c.xAxis.setLabelStep(3) // Add a title to the x axis call c.xAxis.setTitle("Jun 12, 2006") // Add a line layer to the chart dim layer as CDLineLayerMBS layer = c.addLineLayer // Set the default line width to 2 pixels layer.setLineWidth(2) // Add the three data sets to the line layer. For demo purpose, we use a dash // line color for the last line call layer.addDataSet(data0, &hff0000, "Server #1") call layer.addDataSet(data1, &h008800, "Server #2") call layer.addDataSet(data2, c.dashLineColor(&h3333ff, c.kDashLine), "Server #3") // Output the chart Backdrop=c.makeChartPicture End EventHandler
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&Ablage"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Bearbeiten"
MenuItem EditUndo = "&Rückgängig"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "&Ausschneiden"
MenuItem EditCopy = "&Kopieren"
MenuItem EditPaste = "&Einfügen"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "&Alles auswählen"
End MenuBar
End Project

The items on this page are in the following plugins: MBS ChartDirector Plugin.


💬 Ask a question or report a problem