Legend.LegendStyle 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置图例样式。
public:
property System::Windows::Forms::DataVisualization::Charting::LegendStyle LegendStyle { System::Windows::Forms::DataVisualization::Charting::LegendStyle get(); void set(System::Windows::Forms::DataVisualization::Charting::LegendStyle value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Forms.DataVisualization.Charting.LegendStyle LegendStyle { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.LegendStyle : System.Windows.Forms.DataVisualization.Charting.LegendStyle with get, set
Public Property LegendStyle As LegendStyle
属性值
一个 LegendStyle 枚举值,该值可确定图例样式。 默认值是 Table。
- 属性
注解
默认情况下,图例显示为表中的一系列项。 可以通过设置 TableStyle 属性来指定是按宽度还是按高度展开表中的项。 当 TableStyle 属性设置为 Auto时,控件 Chart 将确定是绘制宽表还是高表,具体取决于图表的对齐方式和位置。 这可能会导致使用多个图例项列绘制图例。
图例有三种可能样式:列、行和表。 有关这些样式的摘要,请参阅下表:
Style | 说明 |
---|---|
列 | 图例项显示在一列中,包含多行。 最常在图例停靠在图表的左侧或右侧时使用。 |
行 | 图例项显示在一行中,包含多个列。 最常在图例停靠在图表的顶部或底部时使用。 |
表 | 图例项使用多列和多行显示。 |