InsertChart

InsertChart(ChartType, float, float, float, float, int)

创建一个新图表,使用示例系列数据和设置对其进行初始化,并将 插入到集合中的指定位置。

public IChart InsertChart(ChartType type, float x, float y, float width, float height, int index)
范围类型描述
typeChartType图表类型。
xSingle新图表的 X 坐标。
ySingle新图表的 Y 坐标。
widthSingle图表的宽度。
heightSingle图表的高度。
indexInt32图表在集合中的位置。

返回值

创建图表。

也可以看看


InsertChart(ChartType, float, float, float, float, int, bool)

创建一个新图表并将其插入到集合中的指定位置。

public IChart InsertChart(ChartType type, float x, float y, float width, float height, int index, 
    bool initWithSample)
范围类型描述
typeChartType图表类型。
xSingle新图表的 X 坐标。
ySingle新图表的 Y 坐标。
widthSingle图表的宽度。
heightSingle图表的高度。
indexInt32图表在集合中的位置。
initWithSampleBoolean如果为真,则新图表将使用样本系列数据和设置进行初始化。 如果为假,则新图表将没有系列和最小设置。在这种情况下 图表创建会更快。

返回值

创建图表。

也可以看看