Chartbreaker
    Preparing search index...

    Variable ObjectEOptionFlagsConst

    ObjectEOptionFlags: {
        COLOR_BORDER: 16;
        COLOR_FILL: 64;
        COLOR_PRIMARY: 256;
        COLOR_STROKE: 32;
        DISABLED: 1024;
        ENUM_LINESTYLE: 8;
        ENUM_LINEWIDTH: 4;
        ENUM_TEXTSTYLE: 128;
        EPHEMERAL: 512;
        EXPOSED: 1;
        NO_INVALIDATE: 2;
        NONE: 0;
        POSITION: 4096;
        SILENT: 2048;
    }

    An enum containing various bit flags for generic purposed Bits 1-16 are reserved by ChartBreaker; applications may use all aditional bits

    Currently used for =

    • the flags attribute in all options of ChartbreakerObject

    Type Declaration

    • ReadonlyCOLOR_BORDER: 16

      color is used for stroking borders

    • ReadonlyCOLOR_FILL: 64

      color is used for filling areas

    • ReadonlyCOLOR_PRIMARY: 256

      option is used as primary color for the object multiple options can have this flag; depending on the tools implementation, one of them can be chosen dynamically

    • ReadonlyCOLOR_STROKE: 32

      color is used for stroking lines

    • ReadonlyDISABLED: 1024

      option is disabled; ui should not allow the user to modify it reasons can optionally be specified in the 'hint' attribute of the option

    • ReadonlyENUM_LINESTYLE: 8

      option is a line style (normal / dashed / dotted) enumeration

    • ReadonlyENUM_LINEWIDTH: 4

      option is a line width enumeration (width in pixels)

    • ReadonlyENUM_TEXTSTYLE: 128

      option is a text style (normal / italic / bold) enumeration

    • ReadonlyEPHEMERAL: 512

      option is ephemeral; it will not be serialized

    • ReadonlyEXPOSED: 1

      exposed to ui; e.g. if this flag is set for an option, the UI may allow modification of the option by the user

    • ReadonlyNO_INVALIDATE: 2

      no recalculation neccessary; e.g. if this flag is set for an option on an indicator, ChartBreaker knows that the indicator does not have to be recalculated when the option changes

    • ReadonlyNONE: 0

      no flags

    • ReadonlyPOSITION: 4096

      option influences object position

    • ReadonlySILENT: 2048

      option is silent; no change events will be fired with this flag set