mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-05-02 22:11:28 +08:00
项目结构调整
This commit is contained in:
48
Others/Live-Charts-master/Core40/AxisWindows.cs
Normal file
48
Others/Live-Charts-master/Core40/AxisWindows.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
|
||||
namespace LiveCharts
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public static class AxisWindows
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public static AxisWindow EmptyWindow
|
||||
{
|
||||
get { return new EmptyAxisWindow(); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class EmptyAxisWindow : AxisWindow
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override double MinimumSeparatorWidth
|
||||
{
|
||||
get { return 0; }
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public override bool IsHeader(double x)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public override bool IsSeparator(double x)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public override string FormatAxisLabel(double x)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user