3

enter image description here

I use Stack Column bar in livecharts and when I hover the bar column, Active Tooltip. But I want to remove percentage.

Thx

Mr.MK
  • 192
  • 1
  • 4
  • 13

2 Answers2

1

Try

yourChart.ToolTip = null;
yourChart.Hoverable = false;
Matt
  • 25,943
  • 66
  • 198
  • 303
1

I think you can set the propertie IsWrapped to false. Like in the code :).

<lvc:CartesianChart Series="{Binding SeriesCollection}">
<lvc:CartesianChart.DataTooltip>
    <lvc:DefaultTooltip BulletSize="20" Background="Gray" IsWrapped ="false"/>
</lvc:CartesianChart.DataTooltip>

https://lvcharts.net/App/documentation/beta/LiveCharts-Wpf-DefaultTooltip

I hope it works.

Max
  • 21
  • 5