Reputation: 6844
I am using JQ -Plot line chart for creating a dashbord. But i have a problem repeating the date values in x-axis. how can i remove repeated date values?
Here i want to show only first july 10 and jul 11
Upvotes: 0
Views: 950
Reputation: 2335
You have several things you can do in order to remove repeated date values :
axes: {xaxis: {ticks: ['Jul 10', 'Jul 11'] }}
,axes: {xaxis: {numberTicks: 2}}
(you can in addition specify the min value and/or the max value),Don't hesitate to create a jsfiddle with your code in order to exchange words about it.
Upvotes: 1