Back to Devexpress

PieChartView.Hint Property

maui-devexpress-dot-maui-dot-charts-dot-piechartview-8f0e3a0c.md

latest1.5 KB
Original Source

PieChartView.Hint Property

Gets or sets the pie chart hint. This is a bindable property.

Namespace : DevExpress.Maui.Charts

Assembly : DevExpress.Maui.Charts.dll

NuGet Package : DevExpress.Maui.Charts

Declaration

csharp
public PieHint Hint { get; set; }

Property Value

TypeDescription
PieHint

The PieHint object that stores pie chart hint settings.

|

Example

This example shows how to enable hints for a pie chart.

  1. Create a new PieHint object and assign it to the PieChartView.Hint property.
  2. Set the Enabled property to True.
  3. Use the ShowMode property to specify a gesture on which the pie chart shows the hint.
xml
<dxc:PieChartView>
  <!--...-->
  <dxc:PieChartView.Hint>
    <dxc:PieHint Enabled="True" ShowMode="OnTap" />
  </dxc:PieChartView.Hint>
</dxc:PieChartView>

See Also

PieChartView Class

PieChartView Members

DevExpress.Maui.Charts Namespace