Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SolidGauge

The Gauge Chart with a single solid colored slice.

Solid Gauge extends Radial Gauge. Use GaugeChart.setAngleInterval(start: number, end: number)** to set angular appearance of the Chart.

Before setting the data, request the slice using GaugeChart.getDefaultSlice() Set data range using GaugeChart.setInterval(start: number, end: number) Set data using GaugeChart.setValue(value: number)

Index

Properties

Readonly engine

engine : PublicEngine

Public, safe interface for Panels rendering engine.

pixelScale

pixelScale : Vec2<Scale>

Scale for panel area in pixels. Margin should be set according to panel margin (currently constant).

uiScale

uiScale : Vec2<Scale>

Scale for panel area in percentages (0-100). Margin should be set according to panel margin (currently constant).

Methods

addLegendBox

  • Add a stand-alone LegendBox using a builder.

    Type parameters

    • UIElementType: UIPart = UILegendBox

      Type of UIElement that is specified by 'builder'-parameter.

    Parameters

    • builder: UIElementBuilder<UIElementType>

      LegendBoxBuilder. If omitted, HorizontalLegendBox will be selected. Use LegendBoxBuilders for selection.

    • scale: Vec2<Scale>

      Optional custom scale to position LegendBox on. Defaults to whole chart in percentages [0, 100].

    Returns UIElementType & UIElement

    LegendBox that fulfills interfaces: UIElementType (typeparam) and UIElement

addUIElement

  • Add a stand-alone UIElement using a builder.

    Type parameters

    • UIElementType: UIPart = UITextBox

      Type of UIElement that is specified by 'builder'-parameter.

    Parameters

    • builder: UIElementBuilder<UIElementType>

      UIElementBuilder. If omitted, TextBoxBuilder will be selected. Use UIElementBuilders for selection.

    • scale: Vec2<Scale>

      Optional custom scale to position UIElement on. Defaults to whole chart in percentages [0, 100].

    Returns UIElementType & UIElement

    Object that fulfills interfaces: UIElementType (typeparam) and UIElement

disableAnimations

  • disableAnimations(): this
  • Disable all animations for the chart.

    All animations have to be re-enabled individually if you wish to re-enable animations.

    Returns this

    Chart itself for fluent interface.

dispose

  • dispose(): this
  • Permanently dispose the component.

    To fully allow Garbage-Collection to free the resources used by the component, make sure to remove any references to the component and its children in application code.

    let chart = ...Gauge()
    let slice = chart.getDefaultSlice()
    // Dispose Chart, and remove all references so that they can be garbage-collected.
    chart.dispose()
    chart = undefined
    slice = undefined

    Returns this

    Object itself for fluent interface

getAngleInterval

  • Get the angular interval of the gauge.

    Returns AngleInterval

    Angle interval object {min, max} in degrees.

getAnimationsEnabled

  • getAnimationsEnabled(): boolean
  • Gets if animations are enabled or not.

    Returns boolean

    Boolean state for animations enabled

getAutoScaling

  • getAutoScaling(): boolean
  • Get the current state of the Auto Scaling mode.

    Returns boolean

    True - autofit is enabled, otherwise - False.

getBackgroundFillStyle

  • Get fillstyle of chart background.

    Returns FillStyle

    FillStyle

getBackgroundStrokeStyle

  • getBackgroundStrokeStyle(): LineStyle
  • Get stroke style of chart background.

    Returns LineStyle

    LineStyle

getDataLabelFillStyle

  • Get Fill Style of Gauge Data Label.

    Returns FillStyle

    FillStyle object

getDataLabelFont

  • Get font of Gauge Data Label.

    Returns FontSettings

    FontSettings object for gauge data label.

getDataLabelFormatter

  • getDataLabelFormatter(): NumberFormat
  • Get the formatter for the Data label.

    Returns NumberFormat

    Number formatter object.

getDefaultSlice

  • Get the slice of the gauge.

    Returns SolidGaugeSlice

    Solid Gauge Slice object for further modification.

getIntervalLabelFormatter

  • getIntervalLabelFormatter(): NumberFormat
  • Get the formatter for the scale labels.

    Returns NumberFormat

    Number formatter object.

getIntervalLabelPadding

  • getIntervalLabelPadding(): number
  • Get padding around Chart in pixels.

    Returns number

    Padding datastructure

getMinimumSize

  • getMinimumSize(): Point | undefined
  • Get the minimum size of the chart.

    Returns Point | undefined

    Size {x, y} or undefined

getPadding

  • Get padding around Chart in pixels.

    Returns Margin

    Padding datastructure

getTitle

  • getTitle(): string
  • Get text of Chart title.

    Returns string

    Chart title as a string.

getTitleFillStyle

  • Get fill style of Chart Title.

    Returns FillStyle

    FillStyle object

getTitleFont

  • Get font of Chart title.

    Returns FontSettings

    FontSettings object

getTitleMarginBottom

  • getTitleMarginBottom(): number
  • Returns number

    Padding after Chart title

getTitleMarginTop

  • getTitleMarginTop(): number
  • Returns number

    Padding before Chart title

offAngleIntervalChange

  • offAngleIntervalChange(token: Token): boolean
  • Remove listener with provided token.

    Parameters

    • token: Token

      Token of the listener.

    Returns boolean

    True if the listener is successfully removed and false if it is not found.

offResize

  • offResize(token: Token): boolean
  • Remove event listener from resize event.

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

    True if the listener is successfully removed and false if it is not found

onAngleIntervalChange

onResize

  • onResize(handler: function): Token
  • Subscribe to resize event of Panel.

    Parameters

    • handler: function

      Handler function for event

        • Parameters

          • obj: this
          • width: pixel
          • height: pixel
          • engineWidth: pixel
          • engineHeight: pixel

          Returns void

    Returns Token

    Token of subscription

saveToFile

  • saveToFile(fileName: string, type?: undefined | string, encoderOptions?: undefined | number): this
  • Capture rendered state in an image file. Prompts the browser to download the created file.

    NOTE: The download might be blocked by browser/plugins as harmful. To prevent this, only call the method in events tied to user-interactions. From mouse-event handlers, for example.

    Has two optional parameters which directly reference JavaScript API HTMLCanvasElement.toDataURL. For supported image formats, compression quality, Etc. refer to:

    https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL

    Example usage:

    // Download 'screenshot.png'
    Panel.saveToFile('screenshot')
    // Attempt download 'maybeNotSupported.bmp'
    Panel.saveToFile('maybeNotSupported', 'image/bmp')
    // Attempt download jpeg.file with specified compression quality
    Panel.saveToFile('fileName', 'image/jpeg', 0.50)
    sideeffect

    If 'type' is not supported by browser, an Error will be thrown.

    Parameters

    • fileName: string

      Name of prompted download file as string. File extension shouldn't be included as it is automatically detected from 'type'-argument.

    • type: undefined | string

      A DOMString indicating the image format. The default format type is image/png.

    • encoderOptions: undefined | number

      A Number between 0 and 1 indicating the image quality to use for image formats that use lossy compression such as image/jpeg and image/webp. If this argument is anything else, the default value for image quality is used. The default value is 0.92.

    Returns this

setAngleInterval

  • setAngleInterval(start: number, end: number): this
  • Set angular interval of the gauge in degrees.

    Parameters

    • start: number

      Start angle of the gauge in degrees.

    • end: number

      End angle of the gauge in degrees.

    Returns this

    Gauge itself for fluent interface.

setAnimationsEnabled

  • setAnimationsEnabled(animationsEnabled: boolean): this
  • Sets if animations are enabled or not.

    Parameters

    • animationsEnabled: boolean

      Boolean state for animations enabled

    Returns this

    Gauge itself for fluent interface.

setAutoScaling

  • setAutoScaling(state: boolean): this
  • Set the Auto Scaling mode enabled or disabled.

    Parameters

    • state: boolean

      True - autofit is enabled, otherwise - False.

    Returns this

    Gauge itself for fluent interface.

setBackgroundFillStyle

setBackgroundStrokeStyle

  • setBackgroundStrokeStyle(value: LineStyle | ImmutableMutator<LineStyle>): this
  • Set stroke style of panel background.

    Parameters

    • value: LineStyle | ImmutableMutator<LineStyle>

      LineStyle or function which modifies it

    Returns this

    Object itself

setDataLabelFillStyle

  • Apply new fill style to Gauge Data label.

    Parameters

    Returns this

    Gauge itself for a fluent interface.

setDataLabelFont

  • Set font of Gauge Data Label.

    Example usage:

    // Specified FontSettings
    SolidGauge.setDataLabelFont(new FontSettings({ size: 24, style: 'italic' }))
    // Set to bold
    SolidGauge.setDataLabelFont((fontSettings) => fontSettings.setWeight('bold'))

    Parameters

    Returns this

    Gauge itself for fluent interface.

setDataLabelFormatter

  • setDataLabelFormatter(formatter: NumberFormat): this
  • Set a new number formatter for the Data label.

    Parameters

    • formatter: NumberFormat

      Number formatter

    Returns this

    Gauge itself for fluent interface.

setGaugeFillStyle

  • Apply new fill style to slice arc.

    Parameters

    Returns this

    Gauge itself for fluent interface.

setGaugeStrokeStyle

  • Set stroke of gauge background

    Parameters

    • value: LineStyle | ImmutableMutator<LineStyle>

      LineStyle or mutator to modify the existing one.

    Returns this

    Gauge itself for fluent interface.

setIntervalLabelFormatter

  • setIntervalLabelFormatter(formatter: NumberFormat): this
  • Set a new number formatter for the scale labels.

    Parameters

    • formatter: NumberFormat

      Number formatter

    Returns this

    Gauge itself for fluent interface.

setIntervalLabelPadding

  • setIntervalLabelPadding(padding: number): this
  • Set padding between Gauge and interval labels in pixels.

    Parameters

    • padding: number

      Number with pixel margin

    Returns this

    Gauge itself for fluent interface.

setLUT

  • setLUT(lut?: LUT): this
  • Set lookup table.

    Example usage:

    // Gauge slice color depending on value
    SolidGauge.setLUT(new LUT ( { steps: [ { value: 0, color: ColorRGBA( 0, 0, 0 ) },
     { value: 500, color: ColorRGBA( 12, 213, 87 ) } ],
     interpolate: true })

    Parameters

    • lut: LUT

      Lookup table |

    Returns this

    Gauge itself for fluent interface

setPadding

  • setPadding(padding: Partial<Margin> | number): this
  • Set padding around Chart in pixels.

    Parameters

    • padding: Partial<Margin> | number

      Number with pixel margins for all sides or datastructure with individual pixel paddings for each side. Any side can be omitted, only passed values will be overridden.

    Returns this

    Object itself

setThickness

  • setThickness(thickness: number): this
  • Set thickness of the gauge.

    Parameters

    • thickness: number

    Returns this

    Gauge itself for fluent interface.

setTitle

  • setTitle(title: string): this
  • Set text of Chart title.

    Parameters

    • title: string

      Chart title as a string.

    Returns this

    Object itself for fluent interface.

setTitleFillStyle

  • Set fill style of Chart Title.

    Example usage:

    // Create a new style
    Chart.setTitleFillStyle(new SolidFill({ color: ColorHEX('#F00') }))
    // Change transparency
    Chart.setTitleFillStyle((solidFill) => solidFill.setA(80))
    // Set hidden
    Chart.setTitleFillStyle(emptyFill)

    Parameters

    Returns this

    Chart itself

setTitleFont

  • Set font of Chart Title.

    Example usage:

    // Create a new FontSettings
    Chart.setTitleFont(new FontSettings({ size: 24, style: 'italic' }))
    // Change existing settings
    Chart.setTitleFont((fontSettings) => fontSettings.setWeight('bold'))

    Parameters

    Returns this

    Chart itself

setTitleMarginBottom

  • setTitleMarginBottom(marginPixels: pixel): this
  • Specifies padding after chart title.

    This does not have an effect if title is hidden (empty FillStyle).

    Parameters

    • marginPixels: pixel

      Gap after the chart title in pixels.

    Returns this

    Chart itself for fluent interface

setTitleMarginTop

  • setTitleMarginTop(marginPixels: pixel): this
  • Specifies padding before chart title.

    This does not have an effect if title is hidden (empty FillStyle).

    Parameters

    • marginPixels: pixel

      Gap between the top of chart and its title in pixels.

    Returns this

    Chart itself for fluent interface