James Moger
2011-04-04 fc84260e4238fda10842c1bd3b9fb0cb74b95426
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Created on Dec 11, 2007
 */
package com.codecommit.wicket;
 
/**
 * @author Daniel Spiewak
 */
public enum ChartType {
    LINE("lc"),
    LINE_XY("lxy"),
    
    BAR_HORIZONTAL_SET("bhs"),
    BAR_VERTICAL_SET("bvs"),
    BAR_HORIZONTAL_GROUP("bhg"),
    BAR_VERTICAL_GROUP("bvg"),
    
    PIE("p"),
    PIE_3D("p3"),
    
    VENN("v"),
    
    SCATTER("s");
    
    private final String rendering;
    
    private ChartType(String rendering) {
        this.rendering = rendering;
    }
    
    public String getRendering() {
        return rendering;
    }
}