ChartSeriesAggregateSettingsBuilder
Methods
Close(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the close value. Applicable to "candlestick" series.
Parameters
value - ChartSeriesAggregate
The value for Close
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Close(ChartSeriesAggregate.Max)
)
)
)
CloseHandler(System.String)
Specifies the aggregate for the close value. Applicable to "candlestick" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.CloseHandler("closeHandler")
)
)
)
CloseHandler(System.Func)
Specifies the aggregate for the close value. Applicable to "candlestick" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.CloseHandler(
@<text>
// code here
</text>
)
)
)
)
High(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the high value. Applicable to "candlestick" series.
Parameters
value - ChartSeriesAggregate
The value for High
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.High(ChartSeriesAggregate.Sum)
)
)
)
HighHandler(System.String)
Specifies the aggregate for the high value. Applicable to "candlestick" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.HighHandler("highHandler")
)
)
)
HighHandler(System.Func)
Specifies the aggregate for the high value. Applicable to "candlestick" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.HighHandler(
@<text>
//code here
</text>
)
)
)
)
Low(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the low value. Applicable to "candlestick" series.
Parameters
value - ChartSeriesAggregate
The value for Low
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Low(ChartSeriesAggregate.Sum)
)
)
)
LowHandler(System.String)
Specifies the aggregate for the low value. Applicable to "candlestick" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.LowHandler("lowHandler")
)
)
)
LowHandler(System.Func)
Specifies the aggregate for the low value. Applicable to "candlestick" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.LowHandler(
@<text>
// code here
</text>
)
)
)
)
Open(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the open value. Applicable to "candlestick" series.
Parameters
value - ChartSeriesAggregate
The value for Open
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Open(ChartSeriesAggregate.Sum)
)
)
)
OpenHandler(System.String)
Specifies the aggregate for the open value. Applicable to "candlestick" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.OpenHandler("openHandler")
)
)
)
OpenHandler(System.Func)
Specifies the aggregate for the open value. Applicable to "candlestick" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.OpenHandler(
@<text>
// code here
</text>
)
)
)
)
Lower(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the lower value. Applicable to "boxPlot" series.
Parameters
value - ChartSeriesAggregate
The value for Lower
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Lower(ChartSeriesAggregate.Sum)
)
)
)
LowerHandler(System.String)
Specifies the aggregate for the lower value. Applicable to "boxPlot" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.LowerHandler("lowerHandler")
)
)
)
LowerHandler(System.Func)
Specifies the aggregate for the lower value. Applicable to "boxPlot" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.LowerHandler(
@<text>
// code here
</text>
)
)
)
)
Mean(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the mean value. Applicable to "boxPlot" series.
Parameters
value - ChartSeriesAggregate
The value for Mean
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Mean(ChartSeriesAggregate.Avg)
)
)
)
MeanHandler(System.String)
Specifies the aggregate for the mean value. Applicable to "boxPlot" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.MeanHandler("meanHandler")
)
)
)
MeanHandler(System.Func)
Specifies the aggregate for the mean value. Applicable to "boxPlot" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.MeanHandler(
@<text>
// code here
</text>
)
)
)
)
Median(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the median value. Applicable to "boxPlot" series.
Parameters
value - ChartSeriesAggregate
The value for Median
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Median(ChartSeriesAggregate.Avg)
)
)
)
MedianHandler(System.String)
Specifies the aggregate for the median value. Applicable to "boxPlot" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.MedianHandler("medianHandler")
)
)
)
MedianHandler(System.Func)
Specifies the aggregate for the median value. Applicable to "boxPlot" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.MedianHandler(
@<text>
// code here
</text>
)
)
)
)
Outliers(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for outliers. Applicable to "boxPlot" series.
Parameters
value - ChartSeriesAggregate
The value for Outliers
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Outliers(ChartSeriesAggregate.Max)
)
)
)
OutliersHandler(System.String)
Specifies the aggregate for outliers. Applicable to "boxPlot" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.OutliersHandler("outliersHandler")
)
)
)
OutliersHandler(System.Func)
Specifies the aggregate for outliers. Applicable to "boxPlot" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.OutliersHandler(
@<text>
// code here
</text>
)
)
)
)
Q1(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the q1 value. Applicable to "boxPlot" series.
Parameters
value - ChartSeriesAggregate
The value for Q1
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Q1(ChartSeriesAggregate.Min)
)
)
)
Q1Handler(System.String)
Specifies the aggregate for the q1 value. Applicable to "boxPlot" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Q1Handler("q1Handler")
)
)
)
Q1Handler(System.Func)
Specifies the aggregate for the q1 value. Applicable to "boxPlot" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Q1Handler(
@<text>
// code here
</text>
)
)
)
)
Q3(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the q3 value. Applicable to "boxPlot" series.
Parameters
value - ChartSeriesAggregate
The value for Q3
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Q3(ChartSeriesAggregate.Max)
)
)
)
Q3Handler(System.String)
Specifies the aggregate for the q3 value. Applicable to "boxPlot" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Q3Handler("q3Handler")
)
)
)
Q3Handler(System.Func)
Specifies the aggregate for the q3 value. Applicable to "boxPlot" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Q3Handler(
@<text>
// code here
</text>
)
)
)
)
Upper(Kendo.Mvc.UI.ChartSeriesAggregate)
Specifies the aggregate for the upper value. Applicable to "boxPlot" series.
Parameters
value - ChartSeriesAggregate
The value for Upper
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.Upper(ChartSeriesAggregate.Sum)
)
)
)
UpperHandler(System.String)
Specifies the aggregate for the upper value. Applicable to "boxPlot" series.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.UpperHandler("upperHandler")
)
)
)
UpperHandler(System.Func)
Specifies the aggregate for the upper value. Applicable to "boxPlot" series.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart<ChartViewModel>()
.Name("chart")
.Series(s => s
.Bar(g => g.Sales)
.Aggregate(a => a
.UpperHandler(
@<text>
// code here
</text>
)
)
)
)