Chartjs-How can i implement RTL for Yaxis in Chartjs

0👍

You can use rtl and other settings in tooltips like below:

options = {
tooltips: {
  rtl: true,
  bodyFontSize: 10,
  titleFontSize: 11,
}}

I’ve used it for Persian Charts and worked correctly.

Leave a comment