PieChartView.Hint Property
Gets or sets the pie chart hint.
Namespace: DevExpress.XamarinForms.Charts
Assembly: DevExpress.XamarinForms.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
Declaration
public PieHint Hint { get; set; }
Property Value
Type | Description |
---|---|
PieHint | The PieHint object that stores pie chart hint settings. |
Example
This example shows how to enable hints for a pie chart.
- Create a new PieHint object and assign it to the
PieChartView.Hint
property. - Set the Enabled property to True.
- Use the ShowMode property to specify a gesture on which the pie chart shows the hint.
<dxc:PieChartView>
<!--...-->
<dxc:PieChartView.Hint>
<dxc:PieHint Enabled="True" ShowMode="OnTap" />
</dxc:PieChartView.Hint>
</dxc:PieChartView>
See Also