Need to show target line width same as bar not complete column.....
0
Accepted
Tsvetina
Telerik team
answered on 22 Jun 2018, 11:43 AM
Hi,
This behavior of the Bullet series cannot be modified but you can achieve your goal using Column series with a custom visual that draws the target value. This custom visual also allows for setting a tooltip for the content that you draw:
visual: function(e) {
// get the default column visual
var visual = e.createVisual();
var axis = e.sender.getAxis("value");
// get the y coordinate at which the target line should be drawn
var target = axis.slot(e.dataItem.target).origin.y;