This commit is contained in:
monitor1394
2022-03-24 08:37:06 +08:00
parent 6cb3709655
commit f597a3f116
78 changed files with 791 additions and 741 deletions

View File

@@ -6,11 +6,9 @@ namespace XCharts.Runtime
{
/// <summary>
/// Grid component.
/// Drawing grid in rectangular coordinate. Line chart, bar chart, and scatter chart can be drawn in grid.
/// <para>
/// 网格组件。
/// |Drawing grid in rectangular coordinate. Line chart, bar chart, and scatter chart can be drawn in grid.
/// |网格组件。
/// 直角坐标系内绘图网格。可以在网格上绘制折线图,柱状图,散点图。
/// </para>
/// </summary>
[Serializable]
[ComponentHandler(typeof(ParallelCoordHandler), true)]
@@ -28,7 +26,7 @@ namespace XCharts.Runtime
/// <summary>
/// Whether to show the grid in rectangular coordinate.
/// 是否显示直角坐标系网格。
/// |是否显示直角坐标系网格。
/// </summary>
public bool show
{
@@ -37,7 +35,7 @@ namespace XCharts.Runtime
}
/// <summary>
/// Orientation of the axis. By default, it's 'Vertical'. You can set it to be 'Horizonal' to make a vertical axis.
/// 坐标轴朝向。默认为垂直朝向。
/// |坐标轴朝向。默认为垂直朝向。
/// </summary>
public Orient orient
{
@@ -46,7 +44,7 @@ namespace XCharts.Runtime
}
/// <summary>
/// Distance between grid component and the left side of the container.
/// grid 组件离容器左侧的距离。
/// |grid 组件离容器左侧的距离。
/// </summary>
public float left
{
@@ -55,7 +53,7 @@ namespace XCharts.Runtime
}
/// <summary>
/// Distance between grid component and the right side of the container.
/// grid 组件离容器右侧的距离。
/// |grid 组件离容器右侧的距离。
/// </summary>
public float right
{
@@ -64,7 +62,7 @@ namespace XCharts.Runtime
}
/// <summary>
/// Distance between grid component and the top side of the container.
/// grid 组件离容器上侧的距离。
/// |grid 组件离容器上侧的距离。
/// </summary>
public float top
{
@@ -73,7 +71,7 @@ namespace XCharts.Runtime
}
/// <summary>
/// Distance between grid component and the bottom side of the container.
/// grid 组件离容器下侧的距离。
/// |grid 组件离容器下侧的距离。
/// </summary>
public float bottom
{
@@ -82,7 +80,7 @@ namespace XCharts.Runtime
}
/// <summary>
/// Background color of grid, which is transparent by default.
/// 网格背景色,默认透明。
/// |网格背景色,默认透明。
/// </summary>
public Color backgroundColor
{