User Interaction
23 Nov 20174 minutes to read
Animation
Bullet Graph supports animation that makes the performance measure bar to animate when rendering the Bullet Graph. Animation is enabled or disabled using enableAnimation property. By default, Animation is enabled in Bullet Graph.
<ej-bulletgraph id="bullet1" [enableAnimation]="true" [value]=8 [comparativeMeasureValue]=5 >
</ej-bulletgraph>
Responsiveness during browser resize
Bullet Graph is made responsive when resizing the browser by using isResponsive property. By default the value of this property is true in Bullet Graph.
<ej-bulletgraph id="bullet1" [isResponsive]="true" [value]=8 [comparativeMeasureValue]=5 >
</ej-bulletgraph>
Responsiveness of the linear gauge is controlled by using enableResize property.
<ej-bulletgraph id="bullet1" [enableResize]="true">
</ej-bulletgraph>
Applying same color to all ticks and labels in a range
Background color for qualitative range is applied to major ticks and minor ticks of the Bullet Graph using applyRangeStrokeToTicks property. The range colors are applied to labels using applyRangeStrokeToLabels property. By default same colors are not applied to a qualitative range and its corresponding ticks or labels.
<ej-bulletgraph id="bullet1" [applyRangeStrokeToTicks]="true" [applyRangeStrokeToLabels]="true"
[value]=8 [comparativeMeasureValue]=5 >
<e-qualitativeranges>
<e-qualitativerange rangeEnd="3.5" rangeStroke="darkred" [rangeOpacity]=0.5>
</e-qualitativerange>
<e-qualitativerange rangeEnd="5.0" rangeStroke="red" [rangeOpacity]=1>
</e-qualitativerange>
<e-qualitativerange rangeEnd="7.5" rangeStroke="blue" [rangeOpacity]=0.7>
</e-qualitativerange>
<e-qualitativerange rangeEnd="9.0" rangeStroke="lightgreen" [rangeOpacity]=1>
</e-qualitativerange>
<e-qualitativerange rangeEnd="10.0" rangeStroke="green" [rangeOpacity]=1>
</e-qualitativerange>
</e-qualitativeranges>
</ej-bulletgraph>
Tooltip
By default Bullet Graph displays Tooltip when mouse is hovered over feature measure bar. Tooltip is enabled or disabled using visible property in tooltipSettings.
Bullet Graph supports Tooltip template instead of default Tooltip to customize the appearance and contents of Tooltip. The Tooltip template should be a <div> element with display set to ‘none’, so it is displayed only when mouse is placed on feature measure bar. The id value of the <div> element should be provided as value to the template property in tooltipSettings of Bullet Graph to display the customized <div> element as Tooltip instead of default Tooltip. The values displayed in default Tooltip such as current value, target value and category are accessed in template <div> element by using , and respectively.
<div id="BulletGraphTooltip" style="display:none; width:125px; padding-top: 10px; padding-bottom:10px; color: blue">
<div align="center" style="color:blue; font-weight:bold"> Sales </div>
<table style="color:green"> <tr> <td> Current </td> <td> : </td> </tr> <tr> <td> Target </td> <td> : </td> </tr> </table>
</div>
<ej-bulletgraph id="bullet1" [height]=150 [value]=8 [comparativeMeasureValue]=5
[tooltipSettings.visible]="true" tooltipSettings.template="BulletGraphTooltip">
</ej-bulletgraph>
The following screenshot displays Bullet Graph with a customized Tooltip including a header and contents such as current value and target value in different colors.