hbar.cs
来自「Open Flash Chart is a program for creati」· CS 代码 · 共 39 行
CS
39 行
using System;
using System.Collections.Generic;
using System.Text;
using JsonFx.Json;
namespace OpenFlashChart
{
public class HBarValue
{
private double left;
private double right;
public HBarValue(double left,double right)
{
this.Left = left;
this.Right = right;
}
[JsonProperty("left")]
public double Left
{
get { return left; }
set { left = value; }
}
[JsonProperty("right")]
public double Right
{
get { return right; }
set { right = value; }
}
}
public class HBar:Chart<HBarValue>
{
public HBar()
{
this.ChartType = "hbar";
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?