Bullet Chart Tooltip Customization

Hi,

I am trying to use Tooltip Template as below, but the tooltip only show once when the mouse move over first time, and never show again. could you please be so kind as to give me a demo?

Thank you

    <SfBulletChart DataSource="@LocalChartData" ValueField="value" TargetField="ComparativeMeasureValue" CategoryField="Category"
                    Height="400" Minimum="0" Maximum="20" Interval="5" LabelFormat="{value}%" Title="Profit in Percentage">
        <BulletChartTooltip Enable="true">
            <Template>
                @{
                    var data = context as IBulletTemplate;
                    <div>
                        <table style="width:100%;  border: 1px solid black;" class="table-borderless">
                            <tr>

                                <td>Note1:@data.Targettd>
                            tr>
                            <tr>
                                <td>note2:@data.Valuetd>
                            tr>
                        table>
                    div>
                }
                Template>
        BulletChartTooltip>
        <BulletChartRangeCollection>
            <BulletChartRange End=5> BulletChartRange>
            <BulletChartRange End=15>BulletChartRange>
            <BulletChartRange End=20>BulletChartRange>
        BulletChartRangeCollection>
    SfBulletChart>

4 Replies 1 reply marked as answer

DG Durga Gopalakrishnan Syncfusion Team March 29, 2021 12:27 PM UTC

Hi Hugo, 
  
Greetings from Syncfusion. 
  
We have already fixed the reported issue from our end and these fix changes will be available in our upcoming Volume 1 Main Release which is expected to be rolled out on or before 31st March 2021. We appreciate your patience until then. 
  
Regards, 
Durga G 



HZ Hugo Zhao March 31, 2021 06:47 AM UTC

Hi Durga,

Tooltip template works in 19.1.0.54. Thank you.
And I found another issue, in the Multiple Data BulletChart Sample,https://blazor.syncfusion.com/demos/bullet-chart/multiple-data?theme=bootstrap4 ,

If I add a few more datas, the tooltip value will mismatch with the data.
    public List<BulletChartData> LocalChartData = new List<BulletChartData>
     {
        new BulletChartData { CompletedStories = 25, RequiredStories = 20, Name = "David" },
        new BulletChartData { CompletedStories = 20, RequiredStories = 25, Name = "Asif" },
        new BulletChartData { CompletedStories = 10, RequiredStories = 15, Name = "Thomas" },
        new BulletChartData { CompletedStories = 39, RequiredStories = 40, Name = "Rohit" },
        new BulletChartData { CompletedStories = 40, RequiredStories = 40, Name = "Virat" },
        new BulletChartData { CompletedStories = 25, RequiredStories = 28, Name = "Jude" },
        new BulletChartData { CompletedStories = 18, RequiredStories = 10, Name = "Warner" },
        new BulletChartData { CompletedStories = 28, RequiredStories = 30, Name = "Malik" },
        new BulletChartData { CompletedStories = 29, RequiredStories = 30, Name = "Malik1" },
        new BulletChartData { CompletedStories = 30, RequiredStories = 30, Name = "Malik2" },
        new BulletChartData { CompletedStories = 31, RequiredStories = 30, Name = "Malik3" },
        new BulletChartData { CompletedStories = 32, RequiredStories = 30, Name = "Malik4" },
        new BulletChartData { CompletedStories = 33, RequiredStories = 30, Name = "Malik5" },
        new BulletChartData { CompletedStories = 34, RequiredStories = 30, Name = "Malik6" },
        new BulletChartData { CompletedStories = 35, RequiredStories = 30, Name = "Malik7" },
        new BulletChartData { CompletedStories = 36, RequiredStories = 30, Name = "Malik8" },
    };





DG Durga Gopalakrishnan Syncfusion Team April 1, 2021 04:00 PM UTC

Hi Hugo,

 

We have validated your reported scenario. We have considered this as a bug and logged a defect report. This fix will be available in our upcoming weekly patch release which is scheduled to be rolled out on 20th April 2021. We appreciate your patience until then. You can keep track of the bug from the below feedback link.

 

Feedback Link : https://www.syncfusion.com/feedback/23919/

 

If you have any more specification/precise replication procedure or a scenario to be tested, you can add it as a comment in the portal. 

 

Regards,

Durga G



DG Durga Gopalakrishnan Syncfusion Team April 20, 2021 12:51 PM UTC

Hi Hugo, 

We are glad to announce that our v19.1.57 patch release is rolled out; we have added the fix for reported issue. You can use the latest Syncfusion.Blazor NuGet package version.  


Screenshot : 


 


We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance. 

Regards, 
Durga G 


Marked as answer
Loader.
Up arrow icon