I'm trying to make a line chart on WebI 4.2 Support Pack 4 Compilation : 14.2.4.2410. I have an array with my number of order for each month.
+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
| Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec |
+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
| 165 | 221 | 150 | 214 | 105 | 18 | 115 | 15 | 201 | 26 | 102 | 101 |
+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
For exemple I use this function in my measures changing the month at the end to get my total of orders.
=Number([Id]) In ([Date]) Where (Month(ToDate([Date]; "dd/MM/yy")) ="january")
How can I get a line chart with my months in x-coordinate and my number of orders in y-coordinate ? I think that I'm totally wrong in my method cause I really don't find how to use line chart correctly. Should I have my months as dimension variables ?
I do not have the right to post pictures yet to illustrate what I want and sorry for my english level.