我一直在尝试在折线图的工具提示中设置自定义标签,例如,以HH:mm格式修改分钟数(74分钟-> 1:14),但是已经有一段时间了,但是不幸的是没有任何成功。将值显示为1.283(... 3)并不是替代方法。
Number to HH:mm as tooltip label
有人知道如何保存x和y轴值(分别是日期和数字)以及修改工具提示显示值吗?
例如:https://swimlane.github.io/ngx-charts/#/ngx-charts/line-chart
与其显示颜色,国家/地区名称和数字的工具提示不同, ->颜色,国家/地区名称和字符串(数字> 3000吗?“高”:“低”;)
当前行为 按预期工作。
预期的行为 显示自定义标签。
问题重现 链接到上面的描述中
改变行为的动机/用例是什么? 能够自定义工具提示的内容
请告诉我们您的环境: 操作系统:Win 10 x64,IDE:Eclipse EE
ngx图版本: 3.0.2
角度版本: 6.0.2
浏览器: [全部]
语言:[TypeScript 2.3.3]
答案 0 :(得分:10)
您可以定义自己的工具提示模板,并在其中呈现所需的任何HTML:
--trusted-host options
示例:https://swimlane.github.io/ngx-charts/#/ngx-charts/tooltip-templates
代码在这里:https://github.com/swimlane/ngx-charts/blob/master/demo/app.component.html#L755-L760
答案 1 :(得分:0)
再次感谢您。不想解决这个问题。 问题在于代码段位于svg 元素内。 这是最终版本:
<!-- This is single point tooltip template -->
<xhtml:ng-template #tooltipTemplate let-model="model">
<xhtml:div class="area-tooltip-container">
<xhtml:div *ngFor="let tooltipItem of model | json | durationHhmm" class="tooltip-item" style="text-align: center;">
<a style=" font-size: 1.2em;">{{tooltipItem.series}}</a><a *ngIf="tooltipShowTime==='DAY' || tooltipShowTime==='WEEK'" style=" font-size: 1.2em;"><br />{{tooltipItem.name | date: 'HH:mm'}} Uhr</a><a *ngIf="tooltipShowTime!=='DAY' && tooltipShowTime!=='WEEK'" style=" font-size: 1.3em; font-weight: 600;"><br />·</a><br /><a style=" font-size: 1.2em; font-weight: 600;">{{tooltipItem.name | date: 'dd.MM.yyyy'}} · </a><a style=" font-size: 1.3em; font-weight: 600;">{{tooltipItem.value}}</a>
</xhtml:div>
</xhtml:div>
</xhtml:ng-template>
<!-- Datapoints Y-Axis -->
<svg:g *ngFor="let series of data">
<svg:g ngx-charts-circle-series
[xScale]="xScale"
[yScale]="yScale"
[colors]="colors"
[data]="series"
[scaleType]="scaleType"
[visibleValue]="hoveredVertical"
[activeEntries]="activeEntries"
[tooltipDisabled]="tooltipDisabled"
[tooltipTemplate]="tooltipTemplate"
(select)="onClick($event, series)"
(activate)="onActivate($event)"
(deactivate)="onDeactivate($event)"
/>
</svg:g>
答案 2 :(得分:0)
上述解决方案不适用于多维图表(> 3),如堆积的水平/垂直条形。
另一种适用于所有情况的简单方法是将tooltipText
作为属性添加为模型的一部分,如下所示:
export let multi = [
{
name: 'Germany',
series: [
{
name: '2010',
value: 7300000,
tooltipText: 't1'
},
{
name: '2011',
value: 8940000,
tooltipText: 't2'
}
]
}
];
然后在标记中使用以下代码,
<ngx-charts-bar-horizontal-stacked
[view]="view"
[scheme]="colorScheme"
[results]="multi"
[gradient]="gradient"
[xAxis]="showXAxis"
[yAxis]="showYAxis"
[legend]="showLegend"
[legendPosition]="legendPosition"
[showXAxisLabel]="showXAxisLabel"
[showYAxisLabel]="showYAxisLabel"
[xAxisLabel]="xAxisLabel"
[yAxisLabel]="yAxisLabel"
(select)="onSelect($event)">
<ng-template #tooltipTemplate let-model="model">
<div class="tooltip">
{{model.tooltipText}}
</div>
</ng-template>
</ngx-charts-bar-horizontal-stacked>