You find this example project in your Plugins Download as a Xojo project file within the examples folder: /ChartDirector/simplePie Korean
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
End Class
Class PicWindow Inherits Window
EventHandler Sub Open()
Dim c As CDPieChartMBS
// The data for the pie chart
dim data(-1) as double=array(55.0, 18.0, 15.0, 12.0, 8.0, 30.0, 35.0)
// The labels for the pie chart
Dim labels(-1) As String=Array("역사", "독립", "노동", "여자", "미래", "내월", "한글")
// Create a PieChart object of size 360 x 300 pixels
c = new CDPieChartMBS(360, 300)
// Set the center of the pie at (180, 140) and the radius to 100 pixels
c.setPieSize 180,140,100
// Set the pie data and the pie labels
c.setData data,labels
#If TargetWin32
Call c.setLabelStyle "ArialUni.ttf"
#Else
Call c.setLabelStyle "Arial Unicode.ttf"
#EndIf
// 2x for higher DPI displays
c.setOutputOptions("bmpscale=2")
pic = c.MakeChartPicture
'Dim f As FolderItem = SpecialFolder.Desktop.Child("test.jpg")
'pic.Save(f, Picture.SaveAsJPEG, picture.QualityHigh)
End EventHandler
EventHandler Sub Paint(g As Graphics, areas() As REALbasic.Rect)
g.DrawPicture pic, 0, 0, g.Width, g.Height, 0, 0, pic.Width, pic.Height
End EventHandler
Property Private pic As Picture
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