wpf-devexpress-dot-xpf-dot-charts-c54abd79.md
Defines image content for editable annotations.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public class EditableImageContent :
Control
Public Class EditableImageContent
Inherits Control
When an annotation’s Annotation.Content property is set to an EditableImageContent object, users can double-click the annotation and then select a new image in the invoked dialog.
Users can use the Add Image Annotation button in the Chart Toolbar/Ribbon to add a new editable image annotation.
The following example demonstrates how to create an editable image annotation:
<dxc:ChartControl>
<dxc:ChartControl.Annotations>
<dxc:Annotation>
<dxc:Annotation.Content>
<dxc:EditableImageContent ImageSource="pack://application:,,,/Icon_64x64.png"/>
</dxc:Annotation.Content>
<dxc:Annotation.AnchorPoint>
<dxc:ChartAnchorPoint X="100" Y="170"/>
</dxc:Annotation.AnchorPoint>
<dxc:Annotation.ShapePosition>
<dxc:RelativePosition/>
</dxc:Annotation.ShapePosition>
</dxc:Annotation>
</dxc:ChartControl.Annotations>
...
</dxc:ChartControl>
Object DispatcherObject DependencyObject Visual UIElement FrameworkElement Control EditableImageContent
See Also