Series.EmptyPointStyle 属性

定义

获取或设置标记为空的点的绘制样式。

public:
 property System::Windows::Forms::DataVisualization::Charting::DataPointCustomProperties ^ EmptyPointStyle { System::Windows::Forms::DataVisualization::Charting::DataPointCustomProperties ^ get(); void set(System::Windows::Forms::DataVisualization::Charting::DataPointCustomProperties ^ value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Forms.DataVisualization.Charting.DataPointCustomProperties EmptyPointStyle { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.EmptyPointStyle : System.Windows.Forms.DataVisualization.Charting.DataPointCustomProperties with get, set
Public Property EmptyPointStyle As DataPointCustomProperties

属性值

标记为空的点绘制样式。

属性

注解

属性 EmptyPointStyle 确定标记为空的点的绘制样式,例如,在边框颜色、标记图像、背景色或图像中,等等。

某些属性仅适用于特定图表类型。 例如, BackImage 属性不适用于折线图,但适用于面积图。

若要显示指示空点的图像,请使用 MarkerImageMarkerStyle 属性,而不是 BackImage 属性。

属性 AxisLabel 确定空点的轴标签。 请注意,对于堆积图表类型,轴标签由 AxisLabel 设置了此属性的第一个绘制系列的属性确定。

通过将 属性true设置为 IsEmpty ,可以手动将数据点标记为空。 或者,类中的DataManipulator方法之InsertEmptyPoints一可用于检查缺失的数据,并在缺少数据点时插入空点。

注意

对于折线型图表,连接到空点的线条的线条颜色由 Color 属性设置确定。

适用于