Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

I am migrating BulletGraph from JS1 to BulletChart JS2. I am using a tooltip template in JS2. Migrating from JS1. My JS1 template looked like this:

<div id="Tooltip" style="display:none; width:125px;padding-top: 10px;padding-bottom:10px">
<div style="font-weight:bold">
{{ :category }}
</div>
<table>
<tr>
<td id="dayTooltip">Current day average</td>
<td>: {{ :currentValue }} ms</td>
</tr>
<tr>
<td>Prior days' average</td>
<td>: {{ :targetValue }} ms</td>
</tr>
</table>
</div>

Notice {{: category}}. There seems to be no equivalent for this in JS2. I need to be able to show it and it doesn't seem to be supported. Is this something that is not currently available that you have to add with a patch release?