Can we use Gregorian dates together with a Georgian to Persian date converter script to show Persian dates in Highchart and Highstock?
Highchart
Highstock
You can use it babakhani persian date js for example:
xAxis: { type: 'datetime', labels: { formatter: function () { var date = new Date(this.value); var pdate = persianDate(date); return (pdate.pDate.year - 1300) + "/" + pdate.pDate.month; } } }