Example: /ChartDirector/smoothcontour

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


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

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

Project "smoothcontour.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
End Class
Class Window1 Inherits Window
EventHandler Sub Open() // The x and y coordinates of the grid dim dataX(-1) as double = array(-10.0, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10) dim dataY(-1) as double = array(-10.0, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10) // The values at the grid points. In this example, we will compute the values // using the formula z = x * sin(y) + y * sin(x). dim dataZ(21*21-1) as Double for yIndex as integer = 0 to UBound(datay) dim y as double = dataY(yIndex) for xIndex as integer = 0 to UBound(datax) dim x as double = dataX(xIndex) dataZ(yIndex * 21 + xIndex) = sin(x / 2) + sin(y / 2) next next // Create a XYChart object of size 600 x 500 pixels dim c as new CDXYChartMBS(600, 500) // Add a title to the chart using 18 points Times New Roman Bold Italic font call c.addTitle("Nano Lattice Twister Field Intensity ", "timesbi.ttf", 18) // Set the plotarea at (75, 40) and of size 400 x 400 pixels. Use // semi-transparent black (80000000) dotted lines for both horizontal and // vertical grid lines call c.setPlotArea(75, 40, 400, 400, -1, -1, -1, c.dashLineColor(&h80000000, c.kDotLine), -1) // Set x-axis and y-axis title using 12 points Arial Bold Italic font call c.xAxis.setTitle("Lattice X Direction (nm)", "arialbi.ttf", 12) call c.yAxis.setTitle("Lattice Y Direction (nm)", "arialbi.ttf", 12) // Set x-axis and y-axis labels to use Arial Bold font call c.xAxis.setLabelStyle("arialbd.ttf") call c.yAxis.setLabelStyle("arialbd.ttf") // When auto-scaling, use tick spacing of 40 pixels as a guideline c.yAxis.setTickDensity(40) c.xAxis.setTickDensity(40) // Add a contour layer using the given data dim layer as CDContourLayerMBS = c.addContourLayer(dataX,dataY,dataZ) // Set the contour color to transparent layer.setContourColor(c.kTransparent) // Move the grid lines in front of the contour layer c.getPlotArea.moveGridBefore(layer) // Add a color axis (the legend) in which the left center point is anchored at // (495, 240). Set the length to 370 pixels and the labels on the right side. dim cAxis as CDColorAxisMBS = layer.setColorAxis(495, 240, c.kLeft, 370, c.kRight) // Add a bounding box to the color axis using light grey (eeeeee) as the // background and dark grey (444444) as the border. cAxis.setBoundingBox(&heeeeee, &h444444) // Add a title to the color axis using 12 points Arial Bold Italic font call cAxis.setTitle("Twist Pressure (Twist-Volt)", "arialbi.ttf", 12) // Set color axis labels to use Arial Bold font call cAxis.setLabelStyle("arialbd.ttf") // Use smooth gradient coloring cAxis.setColorGradient(true) // 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