273274275276277278279280
* Sets the subtitle. * * @param subtitle the subtitle **/ public DJScatterChartBuilder setSubtitle(String subtitle) { this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle)); return this; }
91929394959697
* * @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 DJLineChartBuilder setTitle(String title) { this.chart.getOptions().setTitleExpression(new LiteralExpression(title)); return this; }
* Sets the subtitle. * * @param subtitle the subtitle **/ public DJLineChartBuilder setSubtitle(String subtitle) { this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle)); return this; }
250251252253254255256257
* Sets the title. * * @param title the title **/ public DJPie3DChartBuilder setTitle(String title) { this.chart.getOptions().setTitleExpression(new LiteralExpression(title)); return this; }
270271272273274275276277
* Sets the subtitle. * * @param subtitle the subtitle **/ public DJPie3DChartBuilder setSubtitle(String subtitle) { this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle)); return this; }