Member 12623273 Ответов: 1

В графе ndv3 js как получить значение tickformat-это год, в формате d3 года


here the below line output is percentage.How to get the year in tickformat
chart.yAxis.tickFormat(d3.format("%x"));


Что я уже пробовал:

код javascript года формата d3

1 Ответов

Рейтинг:
2

Karthik_Mahalingam

попробовать это

chart.yAxis.tickFormat(function (d) { return d3.time.format("%Y")(d) });