Example: /ChartDirector/markzone2

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


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

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

Project "markzone2.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 chart dim data(-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) // The labels for the chart. Note the "-" means a minor tick. dim labels(-1) as string = array("0"+endofline.unix+"Jun 4", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "0"+endofline.unix+"Jun 5") // Create a XYChart object of size 400 x 270 pixels dim c as new CDXYChartMBS(400, 270) // Set the plotarea at (80, 25) and of size 300 x 200 pixels. Use alternate color // background (&heeeeee) and (&hffffff). Set border and grid colors to grey // (&hc0c0c0). call c.setPlotArea(50, 25, 300, 200, &heeeeee, &hffffff, &hc0c0c0, &hc0c0c0, &hc0c0c0) // Add a title to the chart using 14 pts Times Bold Italic font call c.addTitle("Server Monitor", "timesbi.ttf", 14) // Add a title to the y axis call c.yAxis.setTitle("Server Load (MBytes)") // Set the y axis width to 2 pixels c.yAxis.setWidth(2) // Set the labels on the x axis. call c.xAxis.setLabels(labels) // Display 1 out of 3 labels on the x-axis. Show minor ticks for remaining // labels. c.xAxis.setLabelStep(3, 1) // Set the x axis width to 2 pixels c.xAxis.setWidth(2) // Add a horizontal red (&h800080) mark line at y = 80 dim yMark as CDMarkMBS yMark = c.yAxis.addMark(80, &hff0000, "Critical Threshold Set Point") // Set the mark line width to 2 pixels yMark.setLineWidth(2) // Put the mark label at the top center of the mark line yMark.setAlignment(CDXYChartMBS.kTopCenter) // Add an orange (&hffcc66) zone from x = 18 to x = 20 c.xAxis.addZone(18, 20, &hffcc66) // Add a vertical brown (&h995500) mark line at x = 18 dim xMark1 as CDMarkMBS xMark1 = c.xAxis.addMark(18, &h995500, "Backup Start") // Set the mark line width to 2 pixels xMark1.setLineWidth(2) // Put the mark label at the left of the mark line xMark1.setAlignment(CDXYChartMBS.kLeft) // Rotate the mark label by 90 degrees so it draws vertically xMark1.setFontAngle(90) // Add a vertical brown (&h995500) mark line at x = 20 dim xMark2 as CDMarkMBS xMark2 = c.xAxis.addMark(20, &h995500, "Backup End") // Set the mark line width to 2 pixels xMark2.setLineWidth(2) // Put the mark label at the right of the mark line xMark2.setAlignment(CDXYChartMBS.kRight) // Rotate the mark label by 90 degrees so it draws vertically xMark2.setFontAngle(90) // Add a green (&h00cc00) line layer with line width of 2 pixels call c.addLineLayer(data, &h00cc00).setLineWidth(2) // 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