ZingChart: Can I remove or hide the X/Y-axis scale?

Sure, you can hide the whole scale with visible : false , or you can hide the elements that build the scale individually.

scaleY:{
    lineColor:'none',
    tick:{
        visible:false
    },
    guide:{
        visible:false
    },
    item:{
        visible:false
    }
},
scaleX:{
    visible:false
}

Example: https://demos.zingchart.com/view/HVZ9GY9X

Documentation

x-axis JSON Docs
y-axis JSON Docs

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us