'Declaration Public Enum LegendDock Inherits System.Enum
'Usage Dim instance As LegendDock
public enum LegendDock : System.Enum
'Declaration Public Enum LegendDock Inherits System.Enum
'Usage Dim instance As LegendDock
public enum LegendDock : System.Enum
Member | Description |
---|---|
Bottom | The Legend is docked at the bottom. |
Float | The Legend is floating. |
Left | The Legend is docked at the left. |
Right | The Legend is docked at the right. |
Top | The Legend is docked at the top. |
<Window x:Class="WpfApplication56.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" Title="MainWindow" Height="350" Width="525"> <Window.Resources> <DataTemplate x:Key="ColumnTemplate"> <Canvas Width="{Binding Path=W}" Height="{Binding Path=H}"> <Rectangle RadiusX="25" RadiusY="25" Width="{Binding Path=W}" Height="{Binding Path=H}" Fill="{Binding Path=Interior}" /> </Canvas> </DataTemplate> </Window.Resources> <Grid> <xctk:Chart > <xctk:Chart.Legend> <xctk:Legend x:Name="_legend" Dock="Left" AllowResize="True" AllowDock="True" AllowMove="True" Title="Legend"/> </xctk:Chart.Legend> <xctk:Chart.Areas> <xctk:Area Title="Wins/month"> <xctk:Area.XAxis> <xctk:Axis ShowAxisLabel="False" ShowTickLabels="False" ShowTicks="False"/> </xctk:Area.XAxis> <xctk:Area.YAxis> <xctk:Axis ShowAxisLabel="False" ShowTickLabels="False" ShowTicks="False"/> </xctk:Area.YAxis> <xctk:Area.Series> <xctk:Series Title="Months" DefaultInterior="Green" ShowPointsInLegend="True" ShowHintLabels="True"> <xctk:Series.Layout> <xctk:PieLayout /> </xctk:Series.Layout> <xctk:Series.DataPoints> <xctk:DataPoint X="6" Y="6" Label="Jan" /> <xctk:DataPoint X="7" Y="7" Label="Feb"/> <xctk:DataPoint X="4" Y="4" Label="Mar" /> <xctk:DataPoint X="2" Y="2" Label="Apr"/> </xctk:Series.DataPoints> </xctk:Series> </xctk:Area.Series> </xctk:Area> <xctk:Area Title="Goals/player"> <xctk:Area.XAxis> <xctk:Axis Title="Player's Name" LabelsType="Labels" GraduationMode="Manual"/> </xctk:Area.XAxis> <xctk:Area.YAxis> <xctk:Axis Title="Goals" AxisLabelsLayout="ShowToFit"/> </xctk:Area.YAxis> <xctk:Area.Series> <xctk:Series Title="Players" DefaultInterior="Orange"> <xctk:Series.Layout> <xctk:ColumnLayout /> </xctk:Series.Layout> <xctk:Series.DataPoints> <xctk:DataPoint Y="36" Label="Tom" /> <xctk:DataPoint Y="7" Label="Steven"/> <xctk:DataPoint Y="24" Label="Kirk" /> <xctk:DataPoint Y="12" Label="Erik"/> <xctk:DataPoint Y="10" Label="Scott"/> </xctk:Series.DataPoints> </xctk:Series> </xctk:Area.Series> </xctk:Area> </xctk:Chart.Areas> </xctk:Chart> </Grid> </Window>
System.Object
System.ValueType
System.Enum
Xceed.Wpf.Toolkit.Chart.LegendDock
Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2