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
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Use Reports in Applications
    • System Requirements
    • Forums
    • Videos
    • Blogs
    • Submit a Ticket
    • FAQs
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now
Search all

Class ChartYAxis

Represents a chart Y Axis.

Inheritance
System.Object
StateManagedObject
RenderedObject
ChartAxis
ChartYAxis
Inherited Members
ChartAxis.chartAxisAppearance
ChartAxis.chartAxisLabel
ChartAxis.chartAxisItems
ChartAxis.chartAxisParent
ChartAxis.chartAxisRealIsZeroBased
ChartAxis.chartAxisMinItemValue
ChartAxis.chartAxisMaxItemValue
ChartAxis.chartAxisMinAxisValue
ChartAxis.chartAxisMaxAxisValue
ChartAxis.chartAxisPointStart
ChartAxis.chartAxisPointEnd
ChartAxis.pixelsPerValue
ChartAxis.zeroCoord
ChartAxis.GetDistance(PointF, PointF)
ChartAxis.DisableCachedValues()
ChartAxis.SetMinValue(Double)
ChartAxis.ShouldSerializeMinValue()
ChartAxis.ResetMinValue()
ChartAxis.ShouldSerializeMaxValue()
ChartAxis.ResetMaxValue()
ChartAxis.SetMaxValue(Double)
ChartAxis.ShouldSerializeStep()
ChartAxis.ResetStep()
ChartAxis.AutoCalcAxisExtents()
ChartAxis.AddItem(ChartAxisItem, ChartAxisItem[])
ChartAxis.AddItem(ChartAxisItemsCollection)
ChartAxis.AddItem(ChartAxisItem[])
ChartAxis.AddItem(List<ChartAxisItem>)
ChartAxis.GetItem(Int32)
ChartAxis.RemoveAllItems()
ChartAxis.RemoveItem(ChartAxisItem, ChartAxisItem[])
ChartAxis.RemoveItem(Int32, Int32[])
ChartAxis.RemoveItem(Int32)
ChartAxis.RemoveLastItem()
ChartAxis.Clear()
ChartAxis.AddRange(Double, Double, Double)
ChartAxis.AddItem(String, Color)
ChartAxis.AddItem(String, Color, Boolean)
ChartAxis.SetItemLabel(Int32, String)
ChartAxis.SetItemLabel(Int32, ChartAxisItem)
ChartAxis.SetItemColor(Int32, Color)
ChartAxis.Dispose(Boolean)
ChartAxis.Visible
ChartAxis.Item[Int32]
ChartAxis.AutoScale
ChartAxis.Appearance
ChartAxis.AxisLabel
ChartAxis.Parent
ChartAxis.IsZeroBased
ChartAxis.MaxItemsCount
ChartAxis.VisibleValues
ChartAxis.LabelStep
ChartAxis.Items
RenderedObject.objectContainer
RenderedObject.GetOrder()
RenderedObject.SetOrder(Int32)
RenderedObject.Remove()
RenderedObject.BringForward()
RenderedObject.BringToFront()
RenderedObject.SendBackward()
RenderedObject.SendToBack()
RenderedObject.Container
StateManagedObject.IChartingStateManager.LoadViewState(Object)
StateManagedObject.IChartingStateManager.SaveViewState()
StateManagedObject.IChartingStateManager.TrackViewState()
StateManagedObject.CloneState()
StateManagedObject.SetDirty()
StateManagedObject.ToString()
StateManagedObject.Dispose()
StateManagedObject.ViewStateIgnoresCase
StateManagedObject.IChartingStateManager.IsTrackingViewState
Namespace: Telerik.Reporting.Charting
Assembly: Telerik.Reporting.dll

Syntax

public class ChartYAxis : ChartAxis, IChartingStateManagedItem, IChartingStateManager, IDisposable, IOrdering

Constructors

ChartYAxis(ChartPlotArea, ChartYAxisType)

Creates a new instance of the ChartYAxis class.

Declaration
public ChartYAxis(ChartPlotArea parent, ChartYAxisType type)
Parameters
ChartPlotArea parent

ChartYAxisType type

Properties

AxisMode

Gets or sets the style of the Y axis.

Declaration
public ChartYAxisMode AxisMode { get; set; }
Property Value
ChartYAxisMode

IsLogarithmic

Use Logarithmic scale or not.

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

LogarithmBase

Logarithm base. Min possible value is 2

Declaration
public double LogarithmBase { get; set; }
Property Value
System.Double

MaxValue

Specifies the max value of the axis range.

Declaration
public override double MaxValue { get; set; }
Property Value
System.Double

Overrides
ChartAxis.MaxValue

MinValue

Specifies the min value of the axis range.

Declaration
public override double MinValue { get; set; }
Property Value
System.Double

Overrides
ChartAxis.MinValue

ScaleBreaks

Scale breaks settings

Declaration
[SkinnableProperty]
public ScaleBreak ScaleBreaks { get; }
Property Value
ScaleBreak

Segments

Segments collection

Declaration
public AxisSegmentCollection Segments { get; }
Property Value
AxisSegmentCollection

Step

Specifies the step at which axis values are calculated

Declaration
public override double Step { get; set; }
Property Value
System.Double

Overrides
ChartAxis.Step

YAxisType

Defines a type of YAxis

Declaration
public ChartYAxisType YAxisType { get; set; }
Property Value
ChartYAxisType

Methods

GetAxisEndCoord()

Gets the end value coordinate

Declaration
protected override float GetAxisEndCoord()
Returns
System.Single

Coordinate

Overrides
ChartAxis.GetAxisEndCoord()

GetAxisStartCoord()

Gets the start value coordinate

Declaration
protected override float GetAxisStartCoord()
Returns
System.Single

Coordinate

Overrides
ChartAxis.GetAxisStartCoord()

LoadViewState(Object)

Loads Y axis settings from view state

Declaration
protected override void LoadViewState(object savedState)
Parameters
System.Object savedState

View state

Overrides
ChartAxis.LoadViewState(Object)

SaveViewState()

Saves axis settings to a state bag

Declaration
protected override object SaveViewState()
Returns
System.Object

Overrides
ChartAxis.SaveViewState()

TrackViewState()

Tracks view state changes

Declaration
protected override void TrackViewState()
Overrides
ChartAxis.TrackViewState()
Getting Started
  • Install Now
  • Online Demos
Support Resources
  • Documentation
  • Knowledge Base
  • Videos
  • Reporting Samples Repository
  • Reporting Release History
Community
  • Forums
  • Blogs
  • Reporting 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.