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