Methods
destroy ()
To destroy the bullet graph
<ej:Bulletgraph ClientIDMode="Static" runat="server" ID="bullet1">
</ej:Bulletgraph>
var bullet = $("#bullet1").data("ejBulletGraph");
bullet.destroy();
redraw()
To redraw the bullet graph
<ej:Bulletgraph ClientIDMode="Static" runat="server" ID="bullet1">
</ej:Bulletgraph>
var bullet = $("#bullet1").data("ejBulletGraph");
bullet.redraw();
setComparativeMeasureSymbol()
To set the value for comparative measure in bullet graph.
<ej:Bulletgraph ClientIDMode="Static" runat="server" ID="bullet1">
</ej:Bulletgraph>
var bullet = $("#bullet1").data("ejBulletGraph");
bullet.setComparativeMeasureSymbol();
setFeatureMeasureBarValue()
To set the value for feature measure bar.
<ej:Bulletgraph ClientIDMode="Static" runat="server" ID="bullet1">
</ej:Bulletgraph>
var bullet = $("#bullet1").data("ejBulletGraph");
bullet.setFeatureMeasureBarValue();
Events
DrawCaption
Fires on rendering the caption of bullet graph.
<ej:Bulletgraph ClientIDMode="Static" OnClientDrawCaption="onDrawCaption" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDrawCaption(){
// Do Something
}
DrawCategory
Fires on rendering the category.
<ej:Bulletgraph ClientIDMode="Static" OnClientDrawCategory="onDrawCategory" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDrawCategory(){
// Do Something
}
DrawComparativeMeasureSymbol
Fires on rendering the comparative measure symbol.
<ej:Bulletgraph ClientIDMode="Static" OnClientDrawComparativeMeasureSymbol="onDrawComparativeMeasureSymbol" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDrawComparativeMeasureSymbol(){
// Do Something
}
DrawFeatureMeasureBar
Fires on rendering the feature measure bar.
<ej:Bulletgraph ClientIDMode="Static" OnClientDrawFeatureMeasureBar="onDrawDrawFeatureMeasureBar" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDrawFeatureMeasureBar(){
// Do Something
}
DrawIndicator
Fires on rendering the indicator of bullet graph.
<ej:Bulletgraph ClientIDMode="Static" OnClientDrawIndicator="onDrawIndicator" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDrawIndicator(){
// Do Something
}
DrawLabels
Fires on rendering the labels.
<ej:Bulletgraph ClientIDMode="Static" OnClientDrawLabels="onDrawLabels" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDrawLabels(){
// Do Something
}
DrawTicks
Fires on rendering the ticks.
<ej:Bulletgraph ClientIDMode="Static" OnClientDrawTicks="onDrawTicks" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDrawTicks(){
// Do Something
}
DrawQualitativeRanges
Fires on rendering the qualitative ranges.
<ej:Bulletgraph ClientIDMode="Static" OnClientDrawQualitativeRanges="onDrawQualitativeRanges" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDrawQualitativeRanges(){
// Do Something
}
Load
Fires on loading bullet graph.
<ej:Bulletgraph ClientIDMode="Static" OnClientLoad="onLoad" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onLoad(){
// Do Something
}
Click
Click event fires on clicking the bullet graph.
<ej:Bulletgraph ClientIDMode="Static" OnClientClick="onClick" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onClick(){
// Do Something
}
DoubleClick
DoubleClick event fires on double clicking the bullet graph.
<ej:Bulletgraph ClientIDMode="Static" OnClientDoubleClick="onDoubleClick" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onDoubleClick(){
// Do Something
}
RightClick
RightClick event fires on right clicking the bullet graph.
<ej:Bulletgraph ClientIDMode="Static" OnClientRightClick="onRightClick" runat="server" ID="bullet1">
</ej:Bulletgraph>
function onRightClick(){
// Do Something
}