Platforms to show: All Mac Windows Linux Cross-Platform

/ChartDirector/pyramidgap


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

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

Project "pyramidgap.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
EventHandler Sub Open() createChart(0, "pyramidgap0") createChart(1, "pyramidgap1") createChart(2, "pyramidgap2") createChart(3, "pyramidgap3") createChart(4, "pyramidgap4") createChart(5, "pyramidgap5") End EventHandler
Protected Sub CreateChart(img as integer, filename as string) dim w as new PicWindow w.Title=filename // The data for the pyramid chart dim data(-1) as double = array(156.0, 123, 211, 179) // The colors for the pyramid layers dim colors(-1) as integer colors.Append &h66aaee colors.Append &heebb22 colors.Append &hcccccc colors.Append &hcc88ff // The layer gap dim gap as double = img * 0.01 // Create a PyramidChart object of size 200 x 200 pixels, with white (ffffff) // background and grey (888888) border dim c as new CDPyramidChartMBS(200, 200, &hffffff, &h888888) // Set the pyramid center at (100, 100), and width x height to 60 x 120 pixels c.setPyramidSize(100, 100, 60, 120) // Set the layer gap call c.addTitle("Gap = "+str(Gap), "ariali.ttf", 15) c.setLayerGap(gap) // Set the elevation to 15 degrees c.setViewAngle(15) // Set the pyramid data c.setData(data) // Set the layer colors to the given colors c.setColors(c.kDataColor, colors) // Output the chart w.Backdrop=c.makeChartPicture w.top=50+220*(img\3) w.left=220*(img mod 3) w.show End Sub
End Class
Class PicWindow Inherits Window
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...