1 | String getYLabel() {↵ | | 1 | String getXLabel() {↵
|
2 | return getPropertyAsString(REPORT_CHART_Y_LABEL);↵ | | 2 | return getPropertyAsString(REPORT_CHART_↵
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | public void setYLabel(String label) {↵ | | |
|
6 | setProperty(REPORT_CHART_Y_LABEL,label);↵ | | 3 | X_LABEL);↵
|
7 | }↵ | | 4 | }↵
|
8 | ↵ | | 5 | ↵
|
9 | /**↵ | | 6 | /**↵
|
10 | * The title is a the name for the chart. A page link will↵ | | 7 | * The ↵
|
11 | * be generated using the title. The title will also ↵ | | 8 | X data labels should be either the filename, date or some↵
|
| | | 9 | * other series of values↵
|
12 | be↵ | | 10 | * @param label↵
|
13 | * used for a page index.↵ | | 11 | */↵
|
| | | 12 | public void setXLabel(String label) {↵
|
14 | * @return chart title↵ | | 13 | ↵
|
15 | */↵ | | 14 | setProperty(REPORT_CHART_X_LABEL,label);↵
|
| | | 15 | }↵
|
| | | 16 | ↵
|
16 | public String getTitle() {↵ | | 17 | public String getYLabel() {↵
|
17 | return getPropertyAsString(REPORT_CHART_TITLE);↵ | | 18 | return getPropertyAsString(REPORT_CHART_Y_LABEL);↵
|
18 | } | | 19 | }
|