ChartXAxisLabelsSettingsBuilder
Methods
Margin(System.Int32,System.Int32,System.Int32,System.Int32)
Sets the margin of the axis labels.
Parameters
top - System.Int32
The top margin of the labels.
right - System.Int32
The right margin of the labels.
bottom - System.Int32
The bottom margin of the labels.
left - System.Int32
The left margin of the labels.
RETURNS
Returns the current instance of ChartXAxisLabelsSettingsBuilder .
Example
@(Html.Kendo().Chart()
.Name("chart")
.XAxis(axis => axis
.Numeric()
.Labels(labels => labels.Margin(10,10,10,10))
)
)
Padding(System.Int32,System.Int32,System.Int32,System.Int32)
Sets the padding of the axis labels.
Parameters
top - System.Int32
The top padding of the labels.
right - System.Int32
The right padding of the labels.
bottom - System.Int32
The bottom padding of the labels.
left - System.Int32
The left padding of the labels.
RETURNS
Returns the current instance of ChartXAxisLabelsSettingsBuilder .
Example
@(Html.Kendo().Chart()
.Name("chart")
.XAxis(axis => axis
.Numeric()
.Labels(labels => labels.Padding(10,10,10,10))
)
)
Rotation(System.Double)
Defines the rotation angle of the labels. By default, the labels are not rotated.
Parameters
value - System.Double
The value of the rotation angle.
RETURNS
Returns the current instance of ChartXAxisLabelsSettingsBuilder .
Example
@(Html.Kendo().Chart()
.Name("chart")
.XAxis(axis => axis
.Numeric()
.Labels(labels => labels.Rotation(90))
)
)
Background(System.String)
The background color of the labels. Accepts a valid CSS color string, including hex and rgb.
Parameters
value - System.String
The value for Background
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Border(System.Action)
The border of the labels.
Parameters
configurator - System.Action<ChartXAxisLabelsBorderSettingsBuilder>
The configurator for the border setting.
RETURNS
Returns the current instance of ChartXAxisLabelsSettingsBuilder .
Color(System.String)
The text color of the labels. Accepts a valid CSS color string, including hex and rgb.
Parameters
value - System.String
The value for Color
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Culture(System.String)
The culture to use when formatting date values. See the globalization overview for more information.
Parameters
value - System.String
The value for Culture
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
DateFormats(System.Action)
The format used to display the labels when the x values are dates. Uses kendo.format. Contains one placeholder ("{0}") which represents the category value.
Parameters
configurator - System.Action<ChartXAxisLabelsDateFormatsSettingsBuilder>
The configurator for the dateformats setting.
RETURNS
Returns the current instance of ChartXAxisLabelsSettingsBuilder .
Font(System.String)
The font style of the labels. Accepts a valid CSS color string, for example "20px 'Courier New'".
Parameters
value - System.String
The value for Font
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Format(System.String)
The format used to display the labels. Uses kendo.format. Contains one placeholder ("{0}") which represents the category value.
Parameters
value - System.String
The value for Format
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Margin(System.Action)
The margin of the labels. A numeric value will set all margins.
Parameters
configurator - System.Action<ChartXAxisLabelsMarginSettingsBuilder>
The configurator for the margin setting.
RETURNS
Returns the current instance of ChartXAxisLabelsSettingsBuilder .
Mirror(System.Boolean)
If set to true the chart will mirror the axis labels and ticks. If the labels are normally on the left side of the axis, mirroring the axis will render them to the right.
Parameters
value - System.Boolean
The value for Mirror
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Padding(System.Action)
The padding of the labels. A numeric value will set all paddings.
Parameters
configurator - System.Action<ChartXAxisLabelsPaddingSettingsBuilder>
The configurator for the padding setting.
RETURNS
Returns the current instance of ChartXAxisLabelsSettingsBuilder .
Rotation(System.Action)
The rotation angle of the labels. By default the labels are not rotated. Can be set to "auto" in which case the labels will be rotated only if the slot size is not sufficient for the entire labels.
Parameters
configurator - System.Action<ChartXAxisLabelsRotationSettingsBuilder>
The configurator for the rotation setting.
RETURNS
Returns the current instance of ChartXAxisLabelsSettingsBuilder .
Skip(System.Double)
The number of labels to skip.
Parameters
value - System.Double
The value for Skip
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Step(System.Double)
The label rendering step - render every n-th label. By default every label is rendered.
Parameters
value - System.Double
The value for Step
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Template(System.String)
The template which renders the labels.The fields which can be used in the template are: value - the category value.
Parameters
value - System.String
The value for Template
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
TemplateId(System.String)
The template which renders the labels.The fields which can be used in the template are: value - the category value.
Parameters
templateId - System.String
The ID of the template element for Template
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
TemplateView(Microsoft.AspNetCore.Html.IHtmlContent)
The template which renders the labels.The fields which can be used in the template are: value - the category value.
Parameters
templateView - Microsoft.AspNetCore.Html.IHtmlContent
The view that contains the template for Template
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
TemplateHandler(System.String)
The template which renders the labels.The fields which can be used in the template are: value - the category value.
Parameters
templateHandler - System.String
The handler that returs the template for Template
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Template(Kendo.Mvc.UI.Fluent.TemplateBuilder)
The template which renders the labels.The fields which can be used in the template are: value - the category value.
Parameters
template - TemplateBuilder<TModel>
A Template component that configures the template.
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Visible(System.Boolean)
If set to true the chart will display the x axis labels. By default the x axis labels are visible.
Parameters
value - System.Boolean
The value for Visible
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Visual(System.String)
A function that can be used to create a custom visual for the labels. The available argument fields are: createVisual - a function that can be used to get the default visual.; culture - the default culture (if set) on the label; format - the default format of the label; options - the label options.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; text - the label text. or value - the category value.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Visual(System.Func)
A function that can be used to create a custom visual for the labels. The available argument fields are: createVisual - a function that can be used to get the default visual.; culture - the default culture (if set) on the label; format - the default format of the label; options - the label options.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; text - the label text. or value - the category value.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.
Position(Kendo.Mvc.UI.ChartAxisLabelsPosition)
Specifies the position of the labels.
Parameters
value - ChartAxisLabelsPosition
The value for Position
RETURNS
Returns the current ChartXAxisLabelsSettingsBuilder instance.