Chartjs-Not all date data shows on x axis line chart

0👍

its better you provide a sample in codesandbox, or maybe try this:

xAxes: [{
  ticks: {
   autoSkip: true,
   maxTicksLimit: 5
  },
  scaleLabel: {
  display: true,
  labelString:[ `Issues: ${yAxisCreatedIssues.length} created and ${resolvedNumber.length} resolved. Period: last 90 days (grouped daily)`]  ,
  },
  type: 'time',
  time: {
  parser: 'YYYY-MM-DD',
  unit: 'month',
  displayFormats: { month: 'MMM-YYYY'}
        }
  },
],

Leave a comment