seriesTooltipTemplate format
See original GitHub issueI’m submitting a …
[ ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[X] support request => Please do not submit support request here
I know it says not to support support requests here, but I couldn’t find where you are supposed to 😞
This should be an easy question though: What is the proper format for seriesTooltipTemplate
? I couldn’t find an example anywhere. I know the other template is like this:
<ng-template #tooltipTemplate let-model="model">
<h1>
Title
</h1>
<h2>{{model.name}}--{{model.value}}</h2>
</ng-template>
That doesn’t work for this one though if I just switch tooltipTemplate
to seriesTooltipTemplate
. It shows Title
and the 2 dashes, but that’s it. I’m guessing you can specify the x and y values for that point, but I’m not sure how. Any help would be appreciated and thank you in advance
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:5 (2 by maintainers)
Top Results From Across the Web
series.tooltip - API Reference - Kendo UI Chart - Documentation
series.tooltip.template String|Function. The template which renders the tooltip. The fields which can be used in the template are:.
Read more >Custom tooltip contents @ ngx-charts | Angular2+ | TypeScript
I've been trying to set a custom label in a line chart's tooltip , e.g., modified number of minutes in HH:mm format (74...
Read more >Line Chart - ngx-charts - GitBook
the x axis tick formatting ... seriesTooltipTemplate. TemplateRef ... Every reference line should be of format {name, value}. showRefLines. boolean.
Read more >How to override ngx-charts tooltip styles with angular-material ...
<ng-template #seriesTooltipTemplate let-model="model">. <h3 class="m-none">$15,000</h3>. <span class="chart__tooltip-sub-label">.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can do this:
Which will show you what the model looks like.
Correct, the seriesTooltipTemplate lists all series for that x value.