Example: /ChartDirector/deptharea

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/deptharea


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/deptharea

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

Project "deptharea.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 area 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, 89.0) dim data2(-1) as double=array(87, 89, 85, 66, 53, 39, 24, 21, 37, 56, 37, 22, 21, 33, 13, 17, 4, 23, 16, 25, 9, 10, 5, 7, 6.0) 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 a XYChart object of size 350 x 230 pixels dim c as new CDXYChartMBS(350, 230) // Set the plotarea at (50, 30) and of size 250 x 150 pixels. call c.setPlotArea(50, 30, 250, 150) // Add a legend box at (55, 0) (top of the chart) using 8 pts Arial Font. Set // background and border to Transparent. call c.addLegend(55, 0, false, "", 8).setBackground(CDXYChartMBS.kTransparent) // Add a title to the x axis call c.xAxis.setTitle("Network Load for Jun 12") // Add a title to the y axis call c.yAxis.setTitle("MBytes") // Set the labels on the x axis. call c.xAxis.setLabels(labels) // Display 1 out of 2 labels on the x-axis. Show minor ticks for remaining // labels. c.xAxis.setLabelStep(2, 1) // Add three area layers, each representing one data set. The areas are drawn in // semi-transparent colors. call c.addAreaLayer(data2, &h808080FF, "Server #1", 3) call c.addAreaLayer(data0, &h80FF0000, "Server #2", 3) call c.addAreaLayer(data1, &h8000FF00, "Server #3", 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