Skip to main content
All docs
V25.1
  • EditableImageContent Class

    Defines image content for editable annotations.

    Namespace: DevExpress.Xpf.Charts

    Assembly: DevExpress.Xpf.Charts.v25.1.dll

    NuGet Package: DevExpress.Wpf.Charts

    Declaration

    public class EditableImageContent :
        Control

    Remarks

    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.

    Example

    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>  
    
    See Also