Back to Devexpress

EditableImageContent Class

wpf-devexpress-dot-xpf-dot-charts-c54abd79.md

latest2.7 KB
Original Source

EditableImageContent Class

Defines image content for editable annotations.

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public class EditableImageContent :
    Control
vb
Public Class EditableImageContent
    Inherits 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:

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

Inheritance

Object DispatcherObject DependencyObject Visual UIElement FrameworkElement Control EditableImageContent

See Also

EditableImageContent Members

EditableTextContent

DevExpress.Xpf.Charts Namespace