Example: /ChartDirector/threedbar multi layer

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/threedbar multi layer


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/threedbar multi layer

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

Project "threedbar multi layer.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 bar chart dim data1(-1) as double dim data2(-1) as double dim data3(-1) as double dim colors1(-1) as integer dim colors2(-1) as integer dim colors3(-1) as integer for i as integer = 1 to 10 data1.Append rnd*100 data2.Append rnd*100 data3.Append rnd*100 colors1.Append CDXYChartMBS.RGB(rnd*256, rnd*256, rnd*256) colors2.Append CDXYChartMBS.RGB(rnd*256, rnd*256, rnd*256) colors3.Append CDXYChartMBS.RGB(rnd*256, rnd*256, rnd*256) next // The labels for the bar chart dim labels(-1) as string = array("Mon", "Tue", "Wed", "Thu", "Fri") // Create a XYChart object of size 300 x 280 pixels dim c as new CDXYChartMBS(400, 400) // Set the plotarea at (45, 30) and of size 200 x 200 pixels call c.setPlotArea(50, 50, 300, 300) // Add a title to the chart call c.addTitle("Weekly Server Load") // Add a title to the y axis call c.yAxis.setTitle("MBytes") // Add a title to the x axis call c.xAxis.setTitle("Work Week 25") // Add a bar chart layer with green (0x00ff00) bars using the given data dim b1 as CDBarLayerMBS b1=c.addBarLayer(data1, colors1) b1.set3D(10,10) // Add a bar chart layer with green (0x00ff00) bars using the given data dim b2 as CDBarLayerMBS b2=c.addBarLayer(data2, colors2) b2.set3D(10, 10) // Add a bar chart layer with green (0x00ff00) bars using the given data dim b3 as CDBarLayerMBS b3=c.addBarLayer(data3, colors3) b3.set3D(10, 10) // Set the labels on the x axis. call c.xAxis.setLabels(labels) // 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

See also:

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


💬 Ask a question or report a problem