I'm using chart.js in angular8 (in Primeng). I need to set these options in my chart:
- for y-axis ticks => textDirection: 'ltr'
- for x-axis ticks => textDirection: 'rtl'
for example, I have done this for tooltip by textDirection:
options = {
tooltips: {
textDirection: 'rtl', //make tooltip text rtl
}
}
Is there any way do something like that to my axes?