MapArea.Url 属性

定义

获取或设置映射区的目标 URL 或定位点。

public:
 property System::String ^ Url { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)]
public string Url { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)>]
member this.Url : string with get, set
Public Property Url As String

属性值

String

一个 string 枚举值,该值表示映射区的目标 URL 或定位点。 若要使用绝对 URL,请以“http://”或“www.”开始字符串表达式。 如果字符串不是以上述前缀之一开始,则会被视为相对 URL。

实现

Url
属性

注解

设置此属性时,将自动创建一个客户端图像映射,并将使用 HREF 特性设置为指定的定位点或 URL 来创建映射区。 此映射区域还将使用与相关图表元素对应的维度。 例如,如果为数据点设置 HREF 属性,则在运行时将生成类似于以下内容的 HTML 代码:

<img id="Chart1" USEMAP="#Chart1ImageMap" src="ChartPic_000002.jpg?6735e83b-f0cd-4225-8be4-047695a61040" border="0" />
<BR>...<BR><MAP NAME="Chart1ImageMap"><BR><AREA SHAPE="rect" HREF="http://www.healthquotes.ca" COORDS= "69,120,106,309"><BR></MAP>  

如果将属性设置为,则设置此属性将不起作用 IsMapEnabled false 。 默认值是 true

重要

若要以这种方式创建图像映射,则 RenderType 对象的属性 Chart 必须设置为 ImageTag 。 使用二进制流式处理时,可以创建图像映射,但必须使用另一种方法。

可以使用属性指定地图区域 () 的属性,例如 TARGET =-空白 MapAreaAttributes

此属性允许您设置特殊关键字,以显示不同类型的图表相关数据。

若要创建具有用户定义坐标的图像映射,请使用 MapAreas 根对象的属性 Chart

适用于