0

I have a jQchart Linear chart. Its plot correctly and working well. I want to hide/disable X axis labels from the chart

Elby
  • 1,624
  • 3
  • 23
  • 42

1 Answers1

2

You can use:

$('#jqChart').jqChart({
   axes: [
      {
         location: 'bottom',
         labels: {
            visible : false
         }
       }
   ],

Disclaimer: I am CTO of jqChart.

Dragan Matek
  • 507
  • 1
  • 3
  • 6