You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: controls/htmlchart/functionality/clienttemplate/overview.md
+32-22Lines changed: 32 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,16 +122,16 @@ You can set the following properties for a **ClientTemplate**:
122
122
123
123
**ASP.NET**
124
124
125
-
<labelsappearance>
125
+
<LabelsAppearance>
126
126
<ClientTemplate>
127
127
Category: #=category#
128
128
</ClientTemplate>
129
-
</labelsappearance>
130
-
<tooltipsappearance>
129
+
</LabelsAppearance>
130
+
<TooltipsAppearance>
131
131
<ClientTemplate>
132
132
Category: #=category#
133
133
</ClientTemplate>
134
-
</tooltipsappearance>
134
+
</TooltipsAppearance>
135
135
136
136
***dataItem** - Returns the original data item used to construct the point. You can see more information about using the **dataItem** object in a **ClientTemplate** in the previous section of this article — *Showing DataBase Values Using a ClientTemplate*.
137
137
@@ -153,82 +153,92 @@ You can set the following properties for a **ClientTemplate**:
153
153
154
154
**ASP.NET**
155
155
156
-
<labelsappearance>
156
+
<LabelsAppearance>
157
157
<ClientTemplate>
158
158
Series Name: #=series.name# , Series Type: #=series.type# , Series Stack Status: #=series.stack #
159
159
</ClientTemplate>
160
-
</labelsappearance>
161
-
<tooltipsappearance>
160
+
</LabelsAppearance>
161
+
<TooltipsAppearance>
162
162
<ClientTemplate>
163
163
Series Name: #=series.name# <br/>
164
164
Series Type: #=series.type# </br>
165
165
Series Stack Status: #=series.stack #
166
166
</ClientTemplate>
167
-
</tooltipsappearance>
167
+
</TooltipsAppearance>
168
168
169
169
***value** - Returns the point value (either a number or an object).
170
170
171
171
* **BubbleSeries** - Returns an object that exposes three fields: x, y and size.
172
172
173
173
**ASP.NET**
174
174
175
-
<labelsappearance>
175
+
<LabelsAppearance>
176
176
<ClientTemplate>
177
177
X Value: #=value.x# , Y Value: #=value.y# , Size Value: #=value.size #
178
178
</ClientTemplate>
179
-
</labelsappearance>
180
-
<tooltipsappearance>
179
+
</LabelsAppearance>
180
+
<TooltipsAppearance>
181
181
<ClientTemplate>
182
182
X Value: #=value.x# <br/>
183
183
Y Value: #=value.y# <br/>
184
184
Size Value: #=value.size #
185
185
</ClientTemplate>
186
-
</tooltipsappearance>
186
+
</TooltipsAppearance>
187
187
188
188
189
189
* **CandlestickSeries** - Returns an object that exposes four fields: open, high, low and close.
190
190
191
191
**ASP.NET**
192
192
193
-
<tooltipsappearance>
193
+
<TooltipsAppearance>
194
194
<ClientTemplate>
195
195
Open Value: #=value.open# <br/>
196
196
High Value: #=value.high# <br/>
197
197
Low Value: #=value.low # <br/>
198
198
Close Value: #=value.close #
199
199
</ClientTemplate>
200
-
</tooltipsappearance>
200
+
</TooltipsAppearance>
201
201
202
202
* **ScatterSeries and ScatterLineSeries** - Returns an object that exposes the x and y fields for the X-value and the Y-value of the item.
203
203
204
204
**ASP.NET**
205
205
206
-
<labelsappearance>
206
+
<LabelsAppearance>
207
207
<ClientTemplate>
208
208
X Value: #=value.x# , Y Value: #=value.y#
209
209
</ClientTemplate>
210
-
</labelsappearance>
211
-
<tooltipsappearance>
210
+
</LabelsAppearance>
211
+
<TooltipsAppearance>
212
212
<ClientTemplate>
213
213
X Value: #=value.x# <br/>
214
214
Y Value: #=value.y#
215
215
</ClientTemplate>=""
216
-
</tooltipsappearance>
216
+
</TooltipsAppearance>
217
+
218
+
* **BoxPlot** - Returns an object that exposes the `lower`, `q1`, `median`, `mean`, `median`, `q3` and `upper` fields that contain the values from the corresponding fields of the series object.
0 commit comments