Uses of Package
org.moxieapps.gwt.highcharts.client.labels

Packages that use org.moxieapps.gwt.highcharts.client.labels
org.moxieapps.gwt.highcharts.client This is the core package of the library, which includes the Chart and StockChart classes which most applications will want to start with when using Highcharts or Highstock visualizations. 
org.moxieapps.gwt.highcharts.client.labels Provides configuration objects that are used to control the display of the axis labels and data labels on the charts. 
org.moxieapps.gwt.highcharts.client.plotOptions Provides configuration objects that are used to control how each of the different series types will be rendered. 
 

Classes in org.moxieapps.gwt.highcharts.client.labels used by org.moxieapps.gwt.highcharts.client
LegendLabelsFormatter
          An interface that can be used to control the display of the labels displayed within a legend.
PlotBandLabel
          Represents the configuration options that can be set for the labels of a PlotBand, and can then be passed to the PlotBand.setLabel(PlotBandLabel) method.
PlotLineLabel
          Represents the configuration options that can be set for the labels of a PlotLine, and can then be passed to the PlotLine.setLabel(PlotLineLabel) method.
StackLabels
          Represents the configuration options that can be set for the stack labels on the y-axis of a chart, and can then be passed to the YAxis.setStackLabels(StackLabels) method.
XAxisLabels
          Represents the configuration options that can be set for the labels on the x-axis of a chart, and can then be passed to the XAxis.setLabels(org.moxieapps.gwt.highcharts.client.labels.XAxisLabels) method.
YAxisLabels
          Represents the configuration options that can be set for the labels on the x-axis of a chart, and can then be passed to the YAxis.setLabels(org.moxieapps.gwt.highcharts.client.labels.YAxisLabels) method.
 

Classes in org.moxieapps.gwt.highcharts.client.labels used by org.moxieapps.gwt.highcharts.client.labels
AxisLabelsData
          An object that represents the state information that will be passed to any custom AxisLabelsFormatter to allow for custom strings to be rendered as the labels on an axis.
AxisLabelsFormatter
          An interface that can be used to control the display of the X or Y axis labels to contain custom text or formatting.
BaseDataLabels
          A common base class for both DataLabels and ProportionalDataLabels to prevent code duplication while still maintaining a cleaner way for the user to utilize the method chaining with the generics in place.
DataLabelsData
          An object that represents the state information that will be passed to any custom DataLabelsFormatter to allow for custom strings to be rendered as the data labels of a series.
DataLabelsFormatter
          An interface that can be used to control the display of the data labels displayed within a series.
Labels
          Represents the common base class for all label configuration option types, which allows for general options to be set via the inherited Configurable.setOption(String, Object) method.
Labels.Align
          An enumeration of supported label alignment types, which can be passed to methods like Labels.setAlign(org.moxieapps.gwt.highcharts.client.labels.Labels.Align) method.
Labels.VerticalAlign
           
LegendLabelsData
          An object that represents the state information that will be passed to any custom LegendLabelsFormatter to allow for custom strings to be rendered as the legend labels.
PlotBandLabel
          Represents the configuration options that can be set for the labels of a PlotBand, and can then be passed to the PlotBand.setLabel(PlotBandLabel) method.
PlotBandLabel.Align
          An enumeration of supported plot band label alignment types, which can be passed to methods like PlotBandLabel.setAlign(Align) method.
PlotBandLabel.TextAlign
          An enumeration of supported plot band label text alignment types, which can be passed to methods like PlotBandLabel.setTextAlign(TextAlign) method.
PlotBandLabel.VerticalAlign
          An enumeration of supported plot band label vertical alignment types, which can be passed to methods like PlotBandLabel.setVerticalAlign(PlotBandLabel.VerticalAlign).
PlotLineLabel
          Represents the configuration options that can be set for the labels of a PlotLine, and can then be passed to the PlotLine.setLabel(PlotLineLabel) method.
PlotLineLabel.Align
          An enumeration of supported plot line label alignment types, which can be passed to methods like PlotLineLabel.setAlign(Align) method.
PlotLineLabel.TextAlign
          An enumeration of supported plot line label text alignment types, which can be passed to methods like PlotLineLabel.setTextAlign(TextAlign) method.
PlotLineLabel.VerticalAlign
          An enumeration of supported plot line label vertical alignment types, which can be passed to methods like PlotLineLabel.setVerticalAlign(PlotLineLabel.VerticalAlign).
ProportionalDataLabels
          A configurable class that can be used to represent custom data label display options for pie charts and funnel charts, which can then be set as the default data label display approach and applied to the ProportionalPlotOptions (via the FunnelPlotOptions.setFunnelDataLabels(FunnelDataLabels) or PiePlotOptions.setPieDataLabels(PieDataLabels) methods).
StackLabels
          Represents the configuration options that can be set for the stack labels on the y-axis of a chart, and can then be passed to the YAxis.setStackLabels(StackLabels) method.
StackLabels.VerticalAlign
          An enumeration of supported stack labels vertical alignment types, which can be passed to methods like StackLabels.setVerticalAlign(StackLabels.VerticalAlign) method.
StackLabelsData
          An object that represents the state information that will be passed to any custom StackLabelsFormatter to allow for custom strings to be rendered as the stack labels on a Y axis.
StackLabelsFormatter
          An interface that can be used to control the display of the Y axis stack labels to contain custom text or formatting.
XAxisLabels
          Represents the configuration options that can be set for the labels on the x-axis of a chart, and can then be passed to the XAxis.setLabels(org.moxieapps.gwt.highcharts.client.labels.XAxisLabels) method.
YAxisLabels
          Represents the configuration options that can be set for the labels on the x-axis of a chart, and can then be passed to the YAxis.setLabels(org.moxieapps.gwt.highcharts.client.labels.YAxisLabels) method.
 

Classes in org.moxieapps.gwt.highcharts.client.labels used by org.moxieapps.gwt.highcharts.client.plotOptions
BaseDataLabels
          A common base class for both DataLabels and ProportionalDataLabels to prevent code duplication while still maintaining a cleaner way for the user to utilize the method chaining with the generics in place.
DataLabels
          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 PlotOptions.setDataLabels(org.moxieapps.gwt.highcharts.client.labels.DataLabels) method).
FunnelDataLabels
          A configurable class that can be used to represent custom data label display options for funnel charts, which can then be set as the default data label display approach and applied to the FunnelPlotOptions (via the FunnelPlotOptions.setFunnelDataLabels(FunnelDataLabels) method).
PieDataLabels
          A configurable class that can be used to represent custom data label display options for pie charts, which can then be set as the default data label display approach and applied to the PiePlotOptions (via the PiePlotOptions.setPieDataLabels(PieDataLabels) method).
PyramidDataLabels
          A configurable class that can be used to represent custom data label display options for funnel charts, which can then be set as the default data label display approach and applied to the FunnelPlotOptions (via the FunnelPlotOptions.setFunnelDataLabels(FunnelDataLabels) method).
 



Copyright © 2015. All Rights Reserved.