📄 dundaswebchart.xml
字号:
</remarks>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.AllowSelecting">
<summary>
Gets or sets a flag that specifies whether an annotation may be selected
with a mouse by the end user.
</summary>
<value>
<b>True</b> if the annotation may be selected, <b>false</b> otherwise.
</value>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.AllowMoving">
<summary>
Gets or sets a flag that specifies whether an annotation may be moved
with a mouse by the end user.
</summary>
<value>
<b>True</b> if the annotation may be moved, <b>false</b> otherwise.
</value>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.AllowAnchorMoving">
<summary>
Gets or sets a flag that specifies whether an annotation anchor may be moved
with a mouse by the end user.
</summary>
<value>
<b>True</b> if the annotation anchor may be moved, <b>false</b> otherwise.
</value>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.AllowResizing">
<summary>
Gets or sets a flag that specifies whether an annotation may be resized
with a mouse by the end user.
</summary>
<value>
<b>True</b> if the annotation may be resized, <b>false</b> otherwise.
</value>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.AllowTextEditing">
<summary>
Gets or sets a flag that specifies whether an annotation's text may be edited
when the end user double clicks on the text.
</summary>
<value>
<b>True</b> if the annotation text may be edited, <b>false</b> otherwise.
</value>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.AllowPathEditing">
<summary>
Gets or sets a flag that specifies whether a polygon annotation's points
may be moved with a mouse by the end user.
</summary>
<value>
<b>True</b> if the polygon annotation's points may be moved, <b>false</b> otherwise.
</value>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.ToolTip">
<summary>
Gets or sets an annotation's tooltip text.
</summary>
<value>
A string value.
</value>
<remarks>
Special keywords can be used in the text when an annotation is anchored to
a data point using the <see cref="P:Dundas.Charting.WebControl.Annotation.AnchorDataPoint"/> property. For a listing of
these keywords refer to the "Annotations" help topic.
</remarks>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.Href">
<summary>
Gets or sets an annotation's Href.
</summary>
<value>
A string value.
</value>
<remarks>
Special keywords can be used when an annotation is anchored to
a data point using the <see cref="P:Dundas.Charting.WebControl.Annotation.AnchorDataPoint"/> property. For a listing of
these keywords refer to the "Annotations" help topic.
</remarks>
</member>
<member name="P:Dundas.Charting.WebControl.Annotation.MapAreaAttributes">
<summary>
Gets or sets an annotation's map area attributes.
</summary>
<value>
A string value.
</value>
<remarks>
This string will be added to the attributes of the image map generated
for the annotation.
<para>
Special keywords can be used when an annotation is anchored to
a data point using the <see cref="P:Dundas.Charting.WebControl.Annotation.AnchorDataPoint"/> property. For a listing of
these keywords refer to the "Annotations" help topic.
</para>
</remarks>
</member>
<member name="T:Dundas.Charting.WebControl.AnnotationCollection">
<summary>
<b>AnnotationCollection</b> is a class that stores chart annotation objects.
<seealso cref="P:Dundas.Charting.WebControl.AnnotationCollection.Chart"/>
</summary>
<remarks>
All chart annotations are stored in this collection, and it is exposed as
the <see cref="P:Dundas.Charting.WebControl.AnnotationCollection.Chart"/> property of the chart. It's also used to
store annotations inside the <see cref="T:Dundas.Charting.WebControl.AnnotationGroup"/> class.
<para>
Methods for adding, inserting, iterating and removing annotations from the
collection are available.
</para>
</remarks>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.#ctor">
<summary>
Default public constructor.
</summary>
<remarks>
This constructor is for internal use and should not be part of documentation.
</remarks>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.#ctor(System.ComponentModel.Design.IServiceContainer)">
<summary>
Public constructor.
</summary>
<param name="serviceContainer">
Chart <see cref="T:System.ComponentModel.Design.IServiceContainer"/> interface.
</param>
<remarks>
This constructor is for the internal use and should not be part of documentation.
</remarks>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.Remove(System.String)">
<summary>
Removes the annotation with the specified name from the collection.
</summary>
<param name="name">
Name of the annotation to be removed.
</param>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.Remove(Dundas.Charting.WebControl.Annotation)">
<summary>
Removes the given annotation from the collection.
</summary>
<param name="annotation">
<see cref="T:Dundas.Charting.WebControl.Annotation"/> object to be removed.
</param>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.Add(Dundas.Charting.WebControl.Annotation)">
<summary>
Adds an annotation to the end of the collection.
</summary>
<param name="annotation">
<see cref="T:Dundas.Charting.WebControl.Annotation"/> object to add.
</param>
<returns>
Index of the newly added object.
</returns>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.Insert(System.Int32,Dundas.Charting.WebControl.Annotation)">
<summary>
Inserts an annotation into the collection.
</summary>
<param name="index">
Index to insert the object at.
</param>
<param name="annotation">
<see cref="T:Dundas.Charting.WebControl.Annotation"/> object to insert.
</param>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.AddLine(System.String,System.Double,System.Double,System.Double,System.Double)">
<summary>
Adds a new line annotation to the end of the collection.
</summary>
<param name="name">
Name of the annotation. Use an empty string to automatically assign a unique name.
</param>
<param name="x1">
X coordinate of the first line point.
</param>
<param name="y1">
Y coordinate of the first line point.
</param>
<param name="x2">
X coordinate of the second line point.
</param>
<param name="y2">
Y coordinate of the second line point.
</param>
<returns>
Index of the added object.
</returns>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.AddArrow(System.String,Dundas.Charting.WebControl.ArrowStyle,System.Int32,System.Double,System.Double,System.Double,System.Double)">
<summary>
Adds a new arrow annotation to the end of the collection.
</summary>
<param name="name">
Name of the annotation. Use an empty string to automatically assign a unique name.
</param>
<param name="style">
<see cref="T:Dundas.Charting.WebControl.ArrowStyle"/> of the arrow.
</param>
<param name="size">
Arrow size, in pixels.
</param>
<param name="x1">
X coordinate of the first line point.
</param>
<param name="y1">
Y coordinate of the first line point.
</param>
<param name="x2">
X coordinate of the second line point.
</param>
<param name="y2">
Y coordinate of the second line point.
</param>
<returns>
Index of the added object.
</returns>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.AddVerticalLine(System.String,System.Double,System.Double,System.Double)">
<summary>
Adds a new vertical line annotation to the end of the collection.
</summary>
<param name="name">
Name of the annotation. Use an empty string to automatically assign a unique name.
</param>
<param name="x">
X coordinate of the line.
</param>
<param name="y1">
Y coordinate of the first line point.
</param>
<param name="y2">
Y coordinate of the second line point.
</param>
<returns>
Index of the added object.
</returns>
</member>
<member name="M:Dundas.Charting.WebControl.AnnotationCollection.AddHorizontalLine(System.String,System.Double,System.Double,System.Double)">
<summary>
Adds a new horizontal line annota
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -