valueAxis.type String
(default: "numeric")
The axis type.
The supported values are:
- "numeric" - numeric axis.
- "log" - logarithmic axis.
Example - using logarithmic value axis
<div id="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: {
type: "log"
},
series: [
{ data: [5, 7, 11123] }
]
});
</script>