Contact Sales

Call center available M-F 9:00 - 4:00 US Eastern Time.

Case Studies

eziparts

eziparts selected Xtreme Toolkit Professional with Visual C++ over many...

Chart Builder Tool

Using the supplied "Chart Builder" tool you can build your charts using a WYSIWYG editor to customize the colors, etc. and export them to an xml file that can then be loaded into the chart control.

// Sample Code
    ChartControl.Content.Legend.Visible = True
    ChartControl.Content.Legend.HorizontalAlignment = xtpChartLegendFar
    ChartControl.Content.EnableMarkup = True
    
    ChartControl.Content.Titles.Add "Chart From Builder File"
    
    Dim PropExchange As PropExchange
    Set PropExchange = ChartControlGlobalSettings.CreatePropExchange
    PropExchange.CreateAsXML True, "Content"
    PropExchange.LoadFromFile (App.Path & "\ChartBuilderFile.xml")
    ChartControl.Content.DoPropExchange PropExchange
// Sample C# Code