yelji
yelji

Reputation: 81

Amcharts time series data, first label showing date

I want to display only time series. but by default first label showing date. I want it to show "00:00"

https://i.sstatic.net/PdWuZ.png

Upvotes: 0

Views: 284

Answers (1)

xorspark
xorspark

Reputation: 16012

You can set markPeriodChange to false in your categoryAxis to prevent the axis from bolding and using a different date format for the first date:

AmCharts.makeChart("chartdiv", {
  // ...
  categoryAxis: {
    // ...
    markPeriodChange: false,
    // ...
  }
});

Upvotes: 1

Related Questions