Hi,
I want to change the font size of my tooltip, they are really small for some reason, how would I do that?
Is it possible to apply some kind of template so I can had images in the tooltips as well?
Thanks,
Pyt
You can specify tooltips with:
<igCA:XamChart Name="xamChart1">
<igCA:XamChart.Series>
<igCA:Series ChartType="Column">
<igCA:Series.DataPoints>
<igCA:DataPoint Value="20">
<igCA:DataPoint.ToolTip>
<TextBlock Text="Tooltip" FontSize="40"/>
</igCA:DataPoint.ToolTip>
</igCA:DataPoint>
<igCA:DataPoint Value="30">
<Image Source="image.png" />
<igCA:DataPoint Value="15" Fill="White" />
</igCA:Series.DataPoints>
</igCA:Series>
</igCA:XamChart.Series>
</igCA:XamChart>
Is there a way to apply a global template to all tooltips? I get my datapoints from a data source and I don't understand how I would apply the tooltip formatting to every single one of them.