I'm trying to align the title to the left instead of the center (shown in the image).
I know this is possible on chartJS v3.0.0-alpha.2, but reactchartjs only goes up to 2.9.30 as far as I know.
Does anyone know how to achieve this in reactchartjs?
I thought it would be something like:
options={{
title: {
position: 'top',
align: 'left',
},
}}
Any help would be appreciated.

You should use the
alignparameter. This sets the alignment of the title. Your options are:startcenterendYour
align: 'left'isn't one of the above and will not have any effect. Settingalign: 'start'however will give you exactly what you want:The full code looks like this:
Let me also mention that you should not confuse that with
position: 'left'.positionmoves the whole title into one oftop,left,bottom,rightarea of the chart. An example with a combination ofposition: 'left'andalign: start: