112113114115116117118
* * @param column the serie column * @param label column the custom label **/ public void addSerie(AbstractColumn column, String label) { addSerie(column, new LiteralExpression(label)); }
253254255256257258259260
* Sets the title. * * @param title the title **/ public DJBarChartBuilder setTitle(String title) { this.chart.getOptions().setTitleExpression(new LiteralExpression(title)); return this; }
273274275276277278279280
* Sets the subtitle. * * @param subtitle the subtitle **/ public DJBarChartBuilder setSubtitle(String subtitle) { this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle)); return this; }
90919293949596
* Sets the title. * * @param title the title **/ public DJXYLineChartBuilder setTitle(String title) { this.chart.getOptions().setTitleExpression(new LiteralExpression(title)); return this; }
* Sets the subtitle. * * @param subtitle the subtitle **/ public DJXYLineChartBuilder setSubtitle(String subtitle) { this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle)); return this; }
52535455565758
public DJAxisFormat() { } public DJAxisFormat(String label) { this(new LiteralExpression(label)); }
* Sets the title. * * @param title the title **/ public DJAreaChartBuilder setTitle(String title) { this.chart.getOptions().setTitleExpression(new LiteralExpression(title)); return this; }
* Sets the subtitle. * * @param subtitle the subtitle **/ public DJAreaChartBuilder setSubtitle(String subtitle) { this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle)); return this; }
* Sets the title. * * @param title the title **/ public DJXYBarChartBuilder setTitle(String title) { this.chart.getOptions().setTitleExpression(new LiteralExpression(title)); return this; }