I am currently utilizing chart.js within an Angular 8 environment using Primeng. I am looking to customize the options for my chart as follows:
- For the y-axis ticks, set textDirection to 'ltr'
- For the x-axis ticks, set textDirection to 'rtl'
For instance, I was able to achieve this customization for tooltip by setting textDirection:
options = {
tooltips: {
textDirection: 'rtl', // Setting tooltip text direction to rtl
}
}
Is there a way to implement similar customizations for my axes?