Platforms to show: All Mac Windows Linux Cross-Platform

/ChartDirector/softmultibar


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

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

Project "softmultibar.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 data0(-1) as double = array(100, 125, 245, 147, 67.0) dim data1(-1) as double = array(85, 156, 179, 211, 123.0) dim data2(-1) as double = array(97, 87, 56, 267, 157.0) // The labels for the bar chart dim labels(-1) as string = array("Mon", "Tue", "Wed", "Thu", "Fri") // Create a XYChart object of size 540 x 375 pixels dim c as new CDXYChartMBS(540, 375) // Add a title to the chart using 18 pts Times Bold Italic font call c.addTitle("Average Weekly Network Load", "timesbi.ttf", 18) // Set the plotarea at (50, 55) and of 440 x 280 pixels in size. Use a vertical // gradient color from light red (ffdddd) to dark red (880000) as background. Set // border and grid lines to white (ffffff). call c.setPlotArea(50, 55, 440, 280, c.linearGradientColor(0, 55, 0, 335, &hffdddd, &h880000), -1, &hffffff, &hffffff) // Add a legend box at (50, 25) using horizontal layout. Use 10pts Arial Bold as // font, with transparent background. dim l as CDLegendBoxMBS l=c.addLegend(50, 25, false, "arialbd.ttf", 10) l.setBackground(c.kTransparent) // Set the x axis labels call c.xAxis.setLabels(labels) // Draw the ticks between label positions (instead of at label positions) c.xAxis.setTickOffset(0.5) // Set axis label style to 8pts Arial Bold call c.xAxis.setLabelStyle("arialbd.ttf", 8) call c.yAxis.setLabelStyle("arialbd.ttf", 8) // Set axis line width to 2 pixels c.xAxis.setWidth(2) c.yAxis.setWidth(2) // Add axis title call c.yAxis.setTitle("Throughput (MBytes Per Hour)") // Add a multi-bar layer with 3 data sets and 4 pixels 3D depth dim layer as CDBarLayerMBS layer = c.addBarLayer(c.kSide, 4) call layer.addDataSet(data0, &hffff00, "Server #1") call layer.addDataSet(data1, &h00ff00, "Server #2") call layer.addDataSet(data2, &h9999ff, "Server #3") // Set bar border to transparent. Use soft lighting effect with light direction // from top. layer.setBorderColor(c.kTransparent, c.softLighting(c.kTop)) // Configure the bars within a group to touch each others (no gap) layer.setBarGap(0.2, c.kTouchBar) 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.


The biggest plugin in space...