Methods
destroy ()
To destroy the bullet graph
@(Html.EJ().BulletGraph("bullet1"))var bullet = $("#bullet1").data("ejBulletGraph");
bullet.destroy();redraw()
To redraw the bullet graph
@(Html.EJ().BulletGraph("bullet1"))var bullet = $("#bullet1").data("ejBulletGraph");
bullet.redraw();setComparativeMeasureSymbol()
To set the value for comparative measure in bullet graph.
@(Html.EJ().BulletGraph("bullet1"))var bullet = $("#bullet1").data("ejBulletGraph");
bullet.setComparativeMeasureSymbol();setFeatureMeasureBarValue()
To set the value for feature measure bar.
@(Html.EJ().BulletGraph("bullet1"))var bullet = $("#bullet1").data("ejBulletGraph");
bullet.setFeatureMeasureBarValue();Events
DrawCaption
Fires on rendering the caption of bullet graph.
@(Html.EJ().BulletGraph("bullet1")
.DrawCaption("drawCaption")
)function drawCaption(){
// Do Something
}DrawCategory
Fires on rendering the category.
@(Html.EJ().BulletGraph("bullet1")
.DrawCategory("drawCategory")
)function drawCategory(){
// Do Something
}DrawComparativeMeasureSymbol
Fires on rendering the comparative measure symbol.
@(Html.EJ().BulletGraph("bullet1")
.DrawComparativeMeasureSymbol("drawComparativeMeasureSymbol")
)function drawComparativeMeasureSymbol(){
// Do Something
}DrawFeatureMeasureBar
Fires on rendering the feature measure bar.
@(Html.EJ().BulletGraph("bullet1")
.DrawFeatureMeasureBar("drawFeatureMeasureBar")
)function drawFeatureMeasureBar(){
// Do Something
}DrawIndicator
Fires on rendering the indicator of bullet graph.
@(Html.EJ().BulletGraph("bullet1")
.DrawIndicator("drawIndicator")
)function drawIndicator(){
// Do Something
}DrawLabels
Fires on rendering the labels.
@(Html.EJ().BulletGraph("bullet1")
.DrawLabels("drawLabels")
)function drawLabels(){
// Do Something
}DrawTicks
Fires on rendering the ticks.
@(Html.EJ().BulletGraph("bullet1")
.DrawTicks("drawTicks")
)function drawTicks(){
// Do Something
}DrawQualitativeRanges
@(Html.EJ().BulletGraph("bullet1")
.DrawQualitativeRanges("drawQualitativeRanges")
)function drawQualitativeRanges(){
// Do Something
}Load
Fires on loading bullet graph.
@(Html.EJ().BulletGraph("bullet1")
.Load("load")
)function load(){
// Do Something
}Click
Click event fires on clicking the bullet graph.
@(Html.EJ().BulletGraph("bullet1")
.Click("click")
)function click(){
// Do Something
}DoubleClick
DoubleClick event fires on double clicking the bullet graph.
@(Html.EJ().BulletGraph("bullet1")
.DoubleClick("doubleClick")
)function doubleClick(){
// Do Something
}RightClick
RightClick event fires on right clicking the bullet graph.
@(Html.EJ().BulletGraph("bullet1")
.RightClick("rightClick")
)function rightClick(){
// Do Something
}