A simple configurable class that can be used to represent custom data label display options, which can then be set as the default data label display approach which can then be applied to a PlotOptions (via the {@link PlotOptions#setDataLabels(org.moxieapps.gwt.highcharts.client.labels.DataLabels)} method).
Note that PlotOptions can then be applied either to the entire chart (via the {@link org.moxieapps.gwt.highcharts.client.Chart#setSeriesPlotOptions(org.moxieapps.gwt.highcharts.client.plotOptions.SeriesPlotOptions)}method), or to a specific data series (via the {@link org.moxieapps.gwt.highcharts.client.Series#setPlotOptions(PlotOptions)}method).
Example usage:
chart.setSeriesPlotOptions( new SeriesPlotOptions() .setDataLabels( new DataLabels() .setEnabled(true) .setAlign(Labels.Align.CENTER) .setColor("#CC0000") ) );
@author squinn@moxiegroup.com (Shawn Quinn)
@since 1.0.0