wilkes (owner)

Revisions

gist: 214270 Download_button fork
public
Public Clone URL: git://gist.github.com/214270.git
Embed All Files: show embed
CPGoogleChart.j #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var GoogleChartURL = "http://chart.apis.google.com/chart",
    CPGoogleVeriticalStackedBarChart = @"bvs",
    CPGoogleHorizontalStackedBarChart = @"bhs"
    CPGoogleVeriticalGroupedBarChart = @"bvs",
    CPGoogleHorizontalGroupedBarChart = @"bhs",
    CPGoogleLineChart = @"lc",
    CPGooglePieChart = @"p",
    CPGooglePieChart3D = @"p3";
 
...
 
+ (id)withFrame:(CGRect)aFrame type:(CPString)aType
{
    return [[self alloc] initWithFrame:aFrame type:aType];
}