2021-01-11 08:54:28 +08:00
|
|
|
/************************************************/
|
|
|
|
|
/* */
|
|
|
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
|
|
|
/* https://github.com/monitor1394 */
|
|
|
|
|
/* */
|
|
|
|
|
/************************************************/
|
2020-07-01 09:38:00 +08:00
|
|
|
|
|
|
|
|
namespace XCharts
|
|
|
|
|
{
|
2021-01-19 12:39:12 +08:00
|
|
|
public partial class BaseChart
|
2020-07-01 09:38:00 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 极坐标。
|
|
|
|
|
/// </summary>
|
2021-01-11 08:54:28 +08:00
|
|
|
public Polar polar { get { return m_Polars.Count > 0 ? m_Polars[0] : null; } }
|
2020-07-01 09:38:00 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// Angle axis of Polar Coordinate.
|
|
|
|
|
/// 极坐标系的角度轴。
|
|
|
|
|
/// </summary>
|
2021-01-11 08:54:28 +08:00
|
|
|
public AngleAxis angleAxis { get { return m_AngleAxes.Count > 0 ? m_AngleAxes[0] : null; } }
|
2020-07-01 09:38:00 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// Radial axis of polar coordinate.
|
|
|
|
|
/// 极坐标系的径向轴。
|
|
|
|
|
/// </summary>
|
2021-01-11 08:54:28 +08:00
|
|
|
public RadiusAxis radiusAxis { get { return m_RadiusAxes.Count > 0 ? m_RadiusAxes[0] : null; } }
|
2020-07-01 09:38:00 +08:00
|
|
|
}
|
|
|
|
|
}
|