Skip to content

Commit

Permalink
Update series.visual docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkaradachki committed Sep 4, 2015
1 parent 5a77a01 commit 461bdf8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/api/javascript/dataviz/ui/chart.md
Original file line number Diff line number Diff line change
Expand Up @@ -13513,7 +13513,7 @@ The data item field which indicates whether to show the point category name in t

### series.visual `Function`

A function that can be used to create a custom visual for the points. Applicable for bar, column, rangeBar, rangeColumn and waterfall series. The available argument fields are:
A function that can be used to create a custom visual for the points. Applicable for bar, column, pie, donut, funnel, rangeBar, rangeColumn and waterfall series. The available argument fields are:

* rect - the `kendo.geometry.Rect` that defines where the visual should be rendered.
* options - the point options.
Expand All @@ -13524,7 +13524,13 @@ A function that can be used to create a custom visual for the points. Applicable
* series - the point series.
* percentage - the point value represented as a percentage value. Available only for donut, pie and 100% stacked charts.
* runningTotal - the sum of point values since the last "runningTotal" [summary point](#configuration-series.summaryField). Available for waterfall series.
* total - the sum of all previous series values. Available for waterfall series.
* total - the sum of all previous series values. Available for waterfall series.
* radius - the segment radius. Available for donut and pie series.
* innerRadius - the segment inner radius. Available for donut series.
* startAngle - the segment start angle. Available for donut and pie series.
* endAngle - the segment end angle. Available for donut and pie series.
* center - the segment center point. Available for donut and pie series.
* points - the segment points. Available for funnel series.

#### Example - using custom visual

Expand Down

0 comments on commit 461bdf8

Please sign in to comment.