Methods
destroy ()
To destroy the bullet graph
<ej-bullet-graph id="BulletGraph">
</ej-bullet-graph>
var bullet = $("#BulletGraph").data("ejBulletGraph");
bullet.destroy();
redraw()
To redraw the bullet graph
<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.
<ej-bullet-graph id="BulletGraph">
</ej-bullet-graph>
var bullet = $("#BulletGraph").data("ejBulletGraph");
bullet.setComparativeMeasureSymbol();
setFeatureMeasureBarValue()
To set the value for feature measure bar.
<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.
<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.
<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.
<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.
<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.
<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.
<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.
<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.
<ej-bullet-graph id="Bullets" load="Load">
</ej-bullet-graph>
<script type="text/javascript">
function Load(args) {
// Do Something
}
</script>