skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class ChartSeries

Inheritance
System.Object
RadControl
PresenterBase
ChartElementPresenter
ChartSeries
IndicatorBase
PieSeries
PointTemplateSeries
Inherited Members
ChartElementPresenter.ZIndex
ChartElementPresenter.Chart
PresenterBase.InfinitySize
PresenterBase.InfinityPoint
PresenterBase.IElementPresenter.MeasureContent(Object, Object)
PresenterBase.RefreshNode(Object)
PresenterBase.InvalidatePalette()
PresenterBase.MeasureNodeOverride(Node, Object)
PresenterBase.RefreshNodeCore(Node)
PresenterBase.CreateContentPresenter(Object, DataTemplate)
PresenterBase.IElementPresenter.IsVisible
PresenterBase.RenderSurface
PresenterBase.Compositor
PresenterBase.ContainerVisualRoot
RadControl.EndVisualStateUpdate(Boolean, Boolean)
RadControl.UpdateVisualState(Boolean)
RadControl.BeginVisualStateUpdate()
RadControl.SetVisualState(String, Boolean)
RadControl.CanUpdateVisualState()
RadControl.ComposeVisualStateName()
RadControl.MeasureOverride(Size)
RadControl.ArrangeOverride(Size)
RadControl.OnApplyTemplate()
RadControl.UnapplyTemplateCore()
RadControl.OnIsEnabledChanged(Boolean, Boolean)
RadControl.LoadCore()
RadControl.OnLoaded()
RadControl.UnloadCore()
RadControl.CurrentVisualState
RadControl.IsLoaded
RadControl.IsLoading
RadControl.IsUnloaded
RadControl.WasUnloaded
RadControl.IsTemplateApplied
Namespace: Telerik.UI.Xaml.Controls.Chart
Assembly: Telerik.WinUI.Controls.dll

Syntax

public abstract class ChartSeries : ChartElementPresenter, IChartSeries, IChartElementPresenter, IElementPresenter

Constructors

ChartSeries()

Declaration
protected ChartSeries()

Fields

AllowSelectProperty

Declaration
public static readonly DependencyProperty AllowSelectProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

ClipToPlotAreaProperty

Declaration
public static readonly DependencyProperty ClipToPlotAreaProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

IsSelectedBindingProperty

Declaration
public static readonly DependencyProperty IsSelectedBindingProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

IsSelectedProperty

Declaration
public static readonly DependencyProperty IsSelectedProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

ItemsSourceProperty

Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

PaletteIndexProperty

Declaration
public static readonly DependencyProperty PaletteIndexProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

ShowLabelsProperty

Declaration
public static readonly DependencyProperty ShowLabelsProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

Properties

ActualPaletteIndex

Declaration
public int ActualPaletteIndex { get; }
Property Value
System.Int32

AllowSelect

Declaration
public bool AllowSelect { get; set; }
Property Value
System.Boolean

ClipToPlotArea

Declaration
public bool ClipToPlotArea { get; set; }
Property Value
System.Boolean

DisplayName

Declaration
public string DisplayName { get; set; }
Property Value
System.String

IsSelected

Declaration
public bool IsSelected { get; set; }
Property Value
System.Boolean

IsSelectedBinding

Declaration
public DataPointBinding IsSelectedBinding { get; set; }
Property Value
DataPointBinding

ItemsSource

Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.Collections.IEnumerable

LabelDefinitions

Declaration
public ObservableCollection<ChartSeriesLabelDefinition> LabelDefinitions { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<ChartSeriesLabelDefinition>

PaletteIndex

Declaration
public int PaletteIndex { get; set; }
Property Value
System.Int32

ShowLabels

Declaration
public bool ShowLabels { get; set; }
Property Value
System.Boolean

Methods

ApplyTemplateCore()

Declaration
protected override bool ApplyTemplateCore()
Returns
System.Boolean

Overrides
PresenterBase.ApplyTemplateCore()

GetDataPointLabels(DataPoint)

Declaration
public IEnumerable<FrameworkElement> GetDataPointLabels(DataPoint point)
Parameters
DataPoint point

Returns
System.Collections.Generic.IEnumerable<Microsoft.UI.Xaml.FrameworkElement>

HitTest(Rect)

Declaration
public virtual bool HitTest(Rect touchRect)
Parameters
Windows.Foundation.Rect touchRect

Returns
System.Boolean

HitTestDataPoints(Rect)

Declaration
public IEnumerable<DataPoint> HitTestDataPoints(Rect touchRect)
Parameters
Windows.Foundation.Rect touchRect

Returns
System.Collections.Generic.IEnumerable<DataPoint>

HitTestDataPointsCore(Rect)

Declaration
protected IEnumerable<DataPoint> HitTestDataPointsCore(Rect touchRect)
Parameters
Windows.Foundation.Rect touchRect

Returns
System.Collections.Generic.IEnumerable<DataPoint>

HitTestDataPointsCore(Rect, Boolean)

Declaration
protected virtual IEnumerable<DataPoint> HitTestDataPointsCore(Rect touchRect, bool includeAllDataPoints)
Parameters
Windows.Foundation.Rect touchRect

System.Boolean includeAllDataPoints

Returns
System.Collections.Generic.IEnumerable<DataPoint>

HitTestElementsCore(Rect, Boolean, Boolean)

Declaration
protected virtual IEnumerable<FrameworkElement> HitTestElementsCore(Rect touchRect, bool dataPointsOnly, bool includeAllElements)
Parameters
Windows.Foundation.Rect touchRect

System.Boolean dataPointsOnly

System.Boolean includeAllElements

Returns
System.Collections.Generic.IEnumerable<Microsoft.UI.Xaml.FrameworkElement>

OnAttached()

Declaration
protected override void OnAttached()
Overrides
ChartElementPresenter.OnAttached()

OnCreateAutomationPeer()

Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
Microsoft.UI.Xaml.Automation.Peers.AutomationPeer

Overrides
RadControl.OnCreateAutomationPeer()

OnDetached(RadChartBase)

Declaration
protected override void OnDetached(RadChartBase oldChart)
Parameters
RadChartBase oldChart

Overrides
ChartElementPresenter.OnDetached(RadChartBase)

OnTemplateApplied()

Declaration
protected override void OnTemplateApplied()
Overrides
RadControl.OnTemplateApplied()

SelectRectPoints(ref Rect)

Declaration
protected virtual Point[] SelectRectPoints(ref Rect touchRect)
Parameters
Windows.Foundation.Rect touchRect

Returns
Windows.Foundation.Point[]

Events

DataBindingComplete

Declaration
public event EventHandler DataBindingComplete
Event Type
System.EventHandler

Explicit Interface Implementations

IChartSeries.OnDataPointIsSelectedChanged(DataPoint)

Declaration
void IChartSeries.OnDataPointIsSelectedChanged(DataPoint point)
Parameters
DataPoint point

Implements
IChartSeries.OnDataPointIsSelectedChanged(DataPoint)

Extension Methods

CollectionExtensions.ToEnumerable<T>(T)
Getting Started
  • Install Now
  • Demos
Support Resources
  • Knowledge Base
Community
  • Forums
  • Blogs
  • XAML Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.