Is there a way to give the label of a linechart a prefix? For example my linechart has a label with numbers (1, 2, 3, 4...). Is there a way to add a String before that so it would turn out like CW1, CW2, CW3, etc...? Appreciate any help!

Is there a way to give the label of a linechart a prefix? For example my linechart has a label with numbers (1, 2, 3, 4...). Is there a way to add a String before that so it would turn out like CW1, CW2, CW3, etc...? Appreciate any help!
Hi @TKEnes ,
Do you want to format the value of X axis label within the Line Chart Control directly? It seems that there is no way to achieve your needs in Power Apps currently.
As an alternative solution, Maybe you could take a try with the following workaround:
1. Select the Line Chart Control and apply the following formula on its Items property as:
AddColumns(datasource,"newcolumnname","CW"&columnname)https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-table-shaping#syntax
2. Set the Labels property of the Line Chart Control to newcolumnname (as below):
Here is a similar case for your reference:
https://powerusers.microsoft.com/t5/Building-Power-Apps/LineChart-axis-labels/m-p/181489
Best Regards,
Charlie Choi