Chartography.net

    
from GChartWrapper import *
# Test to see whether numpy arrays work correctly
# Must have numpy installed to do this test correctly
data = [10,20,30,40,50,60,70,80,90]
try:
    from numpy import array
    data = array(data)
except ImportError:
    _print('Warning: numpy must be installed to do this test correctly')
G = Radar(data, encoding='text')
G.size(200,200)