valueAxis.majorTicks Object
The configuration of the value axis major ticks.
Example - configure the value axis major ticks
<div id="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: [{
majorTicks: {
size: 6,
color: "green",
width: 5
}
}],
series: [
{ data: [1, 2, 3] }
]
});
</script>
valueAxis.majorTicks.color String
(default: "black")
The color of the value axis major ticks lines. Accepts a valid CSS color string, including hex and rgb.
Example - set the value axis major ticks color as a hex string
<div id="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: {
majorTicks: {
color: "#aa00bb"
}
},
series: [
{ data: [1, 2, 3] }
]
});
</script>
Example - set the value axis major ticks color as a RGB value
<div id="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: {
majorTicks: {
color: "rgb(128, 0, 255)"
}
},
series: [
{ data: [1, 2, 3] }
]
});
</script>
Example - set the value axis major ticks color by name
<div id="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: {
majorTicks: {
color: "green"
}
},
series: [
{ data: [1, 2, 3] }
]
});
</script>
valueAxis.majorTicks.size Number
(default: 4)
The length of the tick line in pixels.
Example - set the value axis major ticks size
<div id="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: [{
majorTicks: {
size: 6
}
}],
series: [
{ data: [1, 2, 3] }
]
});
</script>
valueAxis.majorTicks.visible Boolean
(default: true)
If set to true
the chart will display the value axis major ticks. By default the value axis major ticks are visible.
valueAxis.majorTicks.step Number
(default: 1)
The step of the value axis major ticks.
Example - set the value axis major ticks step
<div id="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: [{
majorTicks: {
step: 2
},
categories: ["2011", "2012", "2013"]
}],
series: [{
data: [1, 2, 3]
}]
});
</script>
valueAxis.majorTicks.skip Number
(default: 0)
The skip of the value axis major ticks.
Example - set the value axis major ticks
<div id="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: [{
majorTicks: {
skip: 2
},
categories: ["2011", "2012", "2013"]
}],
series: [{
data: [1, 2, 3]
}]
});
</script>