Methods

destroy ()

To destroy the bullet graph

  • HTML
  • <ej-bullet-graph id="BulletGraph">
    </ej-bullet-graph>
    
    var bullet = $("#BulletGraph").data("ejBulletGraph");
    bullet.destroy();

    redraw()

    To redraw the bullet graph

  • HTML
  • <ej-bullet-graph id="BulletGraph">
    </ej-bullet-graph>
    
    var bullet = $("#BulletGraph").data("ejBulletGraph");
    bullet.redraw();

    setComparativeMeasureSymbol()

    To set the value for comparative measure in bullet graph.

  • TS
  • <ej-bullet-graph id="BulletGraph">
    </ej-bullet-graph>
    
    var bullet = $("#BulletGraph").data("ejBulletGraph");
    bullet.setComparativeMeasureSymbol();

    setFeatureMeasureBarValue()

    To set the value for feature measure bar.

  • TS
  • <ej-bullet-graph id="BulletGraph">
    </ej-bullet-graph>
    
    var bullet = $("#BulletGraph").data("ejBulletGraph");
    bullet.setFeatureMeasureBarValue();

    Events

    drawCaption

    Fires on rendering the caption of bullet graph.

  • HTML
  • <ej-bullet-graph id="Bullets" draw-caption="DrawCaption">
    </ej-bullet-graph>
    
    <script type="text/javascript">
        function DrawCaption(args) {
            // Do Something
        }
    </script>

    drawCategory

    Fires on rendering the category.

  • HTML
  • <ej-bullet-graph id="Bullets" draw-category="DrawCategory">
    </ej-bullet-graph>
    
    <script type="text/javascript">
        function DrawCategory(args) {
            // Do Something
        }
    </script>

    drawComparativeMeasureSymbol

    Fires on rendering the comparative measure symbol.

  • HTML
  • <ej-bullet-graph id="Bullets" draw-comparative-measure-symbol="DrawComparativeMeasureSymbol">
    </ej-bullet-graph>
    
    <script type="text/javascript">
        function DrawComparativeMeasureSymbol(args) {
            // Do Something
        }
    </script>

    drawFeatureMeasureBar

    Fires on rendering the feature measure bar.

  • HTML
  • <ej-bullet-graph id="Bullets" draw-feature-measure-bar="DrawFeatureMeasureBar">
    </ej-bullet-graph>
    
    <script type="text/javascript">
        function DrawFeatureMeasureBar(args) {
            // Do Something
        }
    </script>

    drawIndicator

    Fires on rendering the indicator of bullet graph.

  • HTML
  • <ej-bullet-graph id="Bullets" draw-indicator="DrawIndicator">
    </ej-bullet-graph>
    
    <script type="text/javascript">
        function DrawIndicator(args) {
            // Do Something
        }
    </script>

    drawLabels

    Fires on rendering the labels.

  • HTML
  • <ej-bullet-graph id="Bullets" draw-labels="DrawLabels">
    </ej-bullet-graph>
    
    <script type="text/javascript">
        function DrawLabels(args) {
            // Do Something
        }
    </script>

    drawQualitativeRanges

    Fires on rendering the qualitative ranges.

  • HTML
  • <ej-bullet-graph id="Bullets" draw-quality-ranges="DrawQualityRanges">
    </ej-bullet-graph>
    
    <script type="text/javascript">
        function DrawQualityRanges(args) {
            // Do Something
        }
    </script>

    load

    Fires on loading bullet graph.

  • HTML
  • <ej-bullet-graph id="Bullets" load="Load">
    </ej-bullet-graph>
    
    <script type="text/javascript">
        function Load(args) {
            // Do Something
        }
    </script>