Methods

destroy ()

To destroy the bullet graph

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • var bullet = $("#bullet1").data("ejBulletGraph");
    bullet.destroy();

    redraw()

    To redraw the bullet graph

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • var bullet = $("#bullet1").data("ejBulletGraph");
    bullet.redraw();

    setComparativeMeasureSymbol()

    To set the value for comparative measure in bullet graph.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • var bullet = $("#bullet1").data("ejBulletGraph");
    bullet.setComparativeMeasureSymbol();

    setFeatureMeasureBarValue()

    To set the value for feature measure bar.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • var bullet = $("#bullet1").data("ejBulletGraph");
    bullet.setFeatureMeasureBarValue();

    Events

    DrawCaption

    Fires on rendering the caption of bullet graph.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDrawCaption="onDrawCaption" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDrawCaption(){
        // Do Something
    }

    DrawCategory

    Fires on rendering the category.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDrawCategory="onDrawCategory" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDrawCategory(){
        // Do Something
    }

    DrawComparativeMeasureSymbol

    Fires on rendering the comparative measure symbol.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDrawComparativeMeasureSymbol="onDrawComparativeMeasureSymbol" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDrawComparativeMeasureSymbol(){
        // Do Something
    }

    DrawFeatureMeasureBar

    Fires on rendering the feature measure bar.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDrawFeatureMeasureBar="onDrawDrawFeatureMeasureBar" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDrawFeatureMeasureBar(){
        // Do Something
    }

    DrawIndicator

    Fires on rendering the indicator of bullet graph.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDrawIndicator="onDrawIndicator" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDrawIndicator(){
        // Do Something
    }

    DrawLabels

    Fires on rendering the labels.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDrawLabels="onDrawLabels" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDrawLabels(){
        // Do Something
    }

    DrawTicks

    Fires on rendering the ticks.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDrawTicks="onDrawTicks" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDrawTicks(){
        // Do Something
    }

    DrawQualitativeRanges

    Fires on rendering the qualitative ranges.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDrawQualitativeRanges="onDrawQualitativeRanges" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDrawQualitativeRanges(){
        // Do Something
    }

    Load

    Fires on loading bullet graph.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientLoad="onLoad" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onLoad(){
        // Do Something
    }

    Click

    Click event fires on clicking the bullet graph.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientClick="onClick" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onClick(){
        // Do Something
    }

    DoubleClick

    DoubleClick event fires on double clicking the bullet graph.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientDoubleClick="onDoubleClick" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onDoubleClick(){
        // Do Something
    }

    RightClick

    RightClick event fires on right clicking the bullet graph.

  • HTML
  • <ej:Bulletgraph ClientIDMode="Static" OnClientRightClick="onRightClick" runat="server" ID="bullet1">
    
    </ej:Bulletgraph>
  • JS
  • function onRightClick(){
        // Do Something
    }