CULLY Technologies, LLC
392 Amy Lane
Canton, GA, 30115


Learn more about ChartPart


Look how easy it is to code the values of the ChartPart class!

// This graph is different in that we're forcing values and the key color
// to achieve the special graph.
CP.resetChart
CP.clearValues
CP.chartType = 1
CP.nPalette = 6 // Grayscale

CP.addSeries( "January", "1,2,3" )
CP.addSeries( "February" , "4,5,6" )
CP.addSeries( "March", "7,8,9" )
CP.addSeries( "April", "0,9,8" )
CP.addSeries( "May", "7,6,5" )
CP.addSeries( "June", "4,3,2" )
CP.addSeries( "August", "1,0,1" )
CP.addSeries( "September", "2,3,4" )
CP.addSeries( "October", "5,6,7" )
CP.addSeries( "November", "8,9,0" )
CP.addSeries( "December", "9,8,7" )

CP.title = "Sales by Month"
CP.titleColor = rgb(0,128,0)
CP.redraw

Example chart output


Example Bar Charts




Bar charts, multiple series, multiple values, negative values


Example bar chart output

Stacked Bar charts, multiple series, multiple values, negative values


Example stacked bar chart output

Line charts, multiple series, multiple values, negative values


Example line chart output

Pie charts, multiple values


Example pie chart output