Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
Formatting tooltips
posted

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

Parents
  • 17605
    posted

    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">

    <igCA:DataPoint.ToolTip>

    <Image Source="image.png" />

    </igCA:DataPoint.ToolTip>

    </igCA:DataPoint>

    <igCA:DataPoint Value="15" Fill="White" />

    </igCA:Series.DataPoints>

    </igCA:Series>

    </igCA:XamChart.Series>

    </igCA:XamChart>

Reply Children