chart.js v2 "right to left" tooltip (RTL)

Viewed 3161

I am using chart.js v2.5.0.

My project requirement is that I use tooltips with "right-to-left" direction.

How can I achieve this?

2 Answers

Add this option :

options: { 
tooltips: {
    rtl: true 
  }
}
Related