How to remove tool tip percentage in livechart [closed]
I use Stack Column bar in livecharts and when I hover the bar column, Active Tooltip.
But I want to remove percentage.
Thx
c# livecharts
closed as too broad by Owen Pauling, EdChum, Hans Kesting, greg-449, hellow Nov 16 '18 at 10:58
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I use Stack Column bar in livecharts and when I hover the bar column, Active Tooltip.
But I want to remove percentage.
Thx
c# livecharts
closed as too broad by Owen Pauling, EdChum, Hans Kesting, greg-449, hellow Nov 16 '18 at 10:58
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I use Stack Column bar in livecharts and when I hover the bar column, Active Tooltip.
But I want to remove percentage.
Thx
c# livecharts
I use Stack Column bar in livecharts and when I hover the bar column, Active Tooltip.
But I want to remove percentage.
Thx
c# livecharts
c# livecharts
asked Nov 16 '18 at 7:47
Mr.MKMr.MK
72111
72111
closed as too broad by Owen Pauling, EdChum, Hans Kesting, greg-449, hellow Nov 16 '18 at 10:58
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as too broad by Owen Pauling, EdChum, Hans Kesting, greg-449, hellow Nov 16 '18 at 10:58
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Try
yourChart.ToolTip = null;
yourChart.Hoverable = false;
I Use Toop tip but remove only percentage
– Mr.MK
Nov 16 '18 at 8:30
add a comment |
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.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try
yourChart.ToolTip = null;
yourChart.Hoverable = false;
I Use Toop tip but remove only percentage
– Mr.MK
Nov 16 '18 at 8:30
add a comment |
Try
yourChart.ToolTip = null;
yourChart.Hoverable = false;
I Use Toop tip but remove only percentage
– Mr.MK
Nov 16 '18 at 8:30
add a comment |
Try
yourChart.ToolTip = null;
yourChart.Hoverable = false;
Try
yourChart.ToolTip = null;
yourChart.Hoverable = false;
answered Nov 16 '18 at 8:12
MattMatt
9,54353162270
9,54353162270
I Use Toop tip but remove only percentage
– Mr.MK
Nov 16 '18 at 8:30
add a comment |
I Use Toop tip but remove only percentage
– Mr.MK
Nov 16 '18 at 8:30
I Use Toop tip but remove only percentage
– Mr.MK
Nov 16 '18 at 8:30
I Use Toop tip but remove only percentage
– Mr.MK
Nov 16 '18 at 8:30
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 16 '18 at 9:07
MaxMax
13
13
add a comment |
add a comment |