Enum PlotLabelStyle

  • All Implemented Interfaces:
    IPropCnrChoiceOption<IPlotChoiceOption>, IPlotChoiceOption, java.io.Serializable, java.lang.Comparable<PlotLabelStyle>

    public enum PlotLabelStyle
    extends java.lang.Enum<PlotLabelStyle>
    implements IPlotChoiceOption
    The placement of the labels varies with the different chart plot types along with their default values. For a pie, they include "default" (the default), and "columns". For Cartesian charts, it must be either "inside" or "outside". By default the labels are drawn "inside" the shape representing the data point (a column rectangle for a Columns plot or a marker for a Line plot for instance). When "outside" is used the labels are drawn above the data point shape.
    Author:
    Christopher Mindus
    • Enum Constant Detail

      • DEFAULT

        public static final PlotLabelStyle DEFAULT
        Default is DEFAULT, but really depends on the plot type in the end.
    • Method Detail

      • values

        public static PlotLabelStyle[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (PlotLabelStyle c : PlotLabelStyle.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static PlotLabelStyle valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null