View Full Version : Charts: X-axis labels in line charts
pertti@northernlightssoftware.com
2017-01-09, 12:37
Trying to get a line graph going. Everything works EXCEPT X-axis labels in line charts. X-axis insists on displaying months rather than my labels. If I flip line to bar chart x-axis labels show up fine. Am I missing something here? My setup is below.
1389
barrymavin
2017-01-09, 21:26
Hi Perti,
There's a bug in the library file graph_line.rsp that was introduced in 3.1. I have fixed this in the next 3.2 release.
The good news is you have all the source code for these charts so you can study these .rsp files and edit the file to fix it quite easily.
- Select the library workspace
- Double click the file graph_line.rsp
- Change line 48 to be:
elseif len(m_labels)=0
pertti@northernlightssoftware.com
2017-01-09, 21:50
Hi Perti,
There's a bug in the library file graph_line.rsp that was introduced in 3.1. I have fixed this in the next 3.2 release.
The good news is you have all the source code for these charts so you can study these .rsp files and edit the file to fix it quite easily.
- Select the library workspace
- Double click the file graph_line.rsp
- Change line 48 to be:
elseif len(m_labels)=0
That did it!
Thanks.