valueAxis.visible Boolean (default: true)

    If set to true the chart will display the value axis. By default the value axis is visible.

    Example - hide the value axis

    Open In Dojo
    <div id="chart"></div>
    <script>
    $("#chart").kendoChart({
      valueAxis: {
        visible: false
      },
      series: [
        { data: [1, 2, 3] }
      ]
    });
    </script>
    In this article