Hello! I have a web page in wich I render eleven charts. The first time shows correctly but when I refresh the page the charts doesn´t render their data, it shows other chart data. For example, when I refresh chart 5 show info of cahart 6, chart 6 info of chart 8. The data foreach chart is correctly but if I read the html code of the page I see that the routes are changed and uncoordinated. The versión of the webchart is the 9.1. The DeploymentScenario.ImageURL is a fixed directory + session guid + fixed directory + chart_#SEQNUM(50). Someone knows anything about this problem? Thanks for all.
well, the session is unique, but there are twelve charts on that page, so that's twelve duplicates if your image is just CHART_1 instead of CHART1_1 through CHART12_1.
It works, thanks for all but I´dont have very clear what is the diference between my unique url and yours:
My unique url is this:
fixed directory + session guid + fixed directory + chart_#SEQNUM(50);
It returns: images/guid/chartimages/chart_1
images/guid/chartimages/chart_2
images/guid/chartimages/chart_3
....
images/guid/chartimages/chart_12
And yours:
fixed directory + session guid + fixed directory + chart.ID + chart_#SEQNUM(50)
It returns: images/guid/chartimages/chart1_chart_1
images/guid/chartimages/chart2_chart_2
images/guid/chartimages/chart12_chart_12
Why yours is unique and my no? I thought that my unique url was really unique.
Apart of that, thanks for all!
since you say there are 11 or 12 charts on a page, I expect you'd need the chart's ID in the ImageURL to ensure uniqueness. like:
Thanks for the info, but that doesn´t solve my problem 'cos the url i see and they are uniques. This is the formula that returns me the url:
fixed directory + session guid + fixed directory + chart_#SEQNUM(50)
I think that meanwhile the number of charts by page is not over 50 it should work correctly. I only have 12 of them so is less than the maximun I set.
Do you have any other idea?
Make sure the ImageURL property is unique for each instance of the chart, and it should fix the problem.