Archie144
Members-
Content count
31 -
Joined
-
Last visited
-
Days Won
1
About Archie144
-
Rank
Advanced Member
-
If I want to generate fusion chart which will have same category axis . I've 2 tabs in which I want to show 2 different charts and both will have same category but y axis is going to be different. To avoid 2 server calls I'm creating xml from server which have data for both the charts but depending on some parameter I want to disable one chart in 1st tab and other in 2nd. So that I can use same xml and I don't need to create xml again and I can create 2 charts having same category axis. Is there any such way ? Can you plz provide example ?
-
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
Thanks for the reply. Regards, Archana -
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
Can anyone from fusion chart's moderator comment on this? Whether this kind of chart is available or not so that I can stop my search on this in fusion charts. Thanks, Archana -
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
Hello Anshu, You had asked for snaphot of requirement , I've attached snaphot, There are 2 lines ,I want one of them to be linked with primary Y axis and other with secondary Y axis. Currently I'm using , MSCombiDY2D.swf with CombiDY2D4.html but here they have used multi series instead of stacked chart. Thanks, Archana -
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
-
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
Looks like it's limitation in fusion charts I've attached one chart image , there are 2 lines in chart. I want one of them to be linked with primary Y axis and another to be linked with secondary Y axis. Thanks, Archana -
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
Thanks for your input but here also both line charts are pointing to right side Y axis. I want one line chart to be linked with left side Y axis and one with right side Y axis i.e. one line with primary y axis and another with secondary y axis. Thanks, Archana -
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
Again if my requirement is not clear, I want Stacked Columns to be plotted against primary y-axis and lines are plotted against y axis and these lines y axis should be configurable. Thanks, Archana -
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
I've tried same swf but it does not create another line with primary Y axis. Please refer attached files. Regards, ARchana FPD.xml StCol3DLineDY2_Arc.html -
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 replied to Archie144's topic in General usage
I'll try to send that just now...I don't have that. But requirement is, to have stacked 3d column chart with dual Y axis line chart or stacked column chart with dual Y axis line chart or multi series column chart with dual y axis line chart but would prefer 1st 2 as priority. Thanks, Archana -
Line And Column Stacked Chart Combination Having 2 Lines For For Left Y Axis And 1 For Right Y Axis
Archie144 posted a topic in General usage
I want to create a fusion chart, in that I want stacked columns + line chart In line chart I want to show 2 lines one with left Y axis and one with Right Y axis. ex. on x axis I've dates on left Y axis I want to show rooms sold for that dates and right Y axis I want to show revenue generated for that date, so these 2 line will show rooms and revenue for dates of x axis. In this possible, i did not get this in charts. When I gave parentYAxis="Y" for line it's getting converted into stacked column plz sugges which swf I've to use here. -
I've already posted this in other forum but I did not get reply explaining how to make dataURL locale aware...and that was wrong place to post so I' again posting this topic here. I'm using dataURL attribute where I'm giving path of my servlet. In my servlet I'm creating xml required for displaying fusion chart and writing that in ServletOutputStraem. When this servlet gets called using dataURL I'm getting en_us locale in that servlet even if I change my locale to chinese locale because of which I get x-axis and y-axis in english only. but I'm getting correct locale in jsp where I've given dataURL path of my servlet. Can anyne tell me how can I get correct browser locale using this dataURL attribute? below is my sample: <param name="FlashVars" value="ChartNoDataText=<%= resource.getMessage(request.getLocale(),"Error.key")%> &LoadDataErrorText=<%=resource.getMessage(request. getLocale(),"Error.key")%>&dataURL=. /MyServlet"/> Here I'm getting Error.key localized but I'm not getting strings localized which I'm localizing in MyServlet i.e titles or x -y axis labels
-
Localization Issue-Locale Doesn't Pass When We Use Dataurl
Archie144 replied to Archie144's topic in Collabion Charts for SharePoint
Thanks for first informing that I've posted topic in wrong place. I was wondering why I'm not getting replies. Problem is not with the Chinese charcters, if I pass chinese characters then I do get those corrcetly in Chinese language but when I hit MyServlet url and control goes to MyServet then over there I get locale=en always. This is my problem. Even page which sends request to MYservlet gets localized correctly but on MyServlet I get always english locale so whatver values I try to localize there I get in English. Is there any need or way by which I can set dataURL parameter as "use locale"..somthing like this? -
Localization Issue-Locale Doesn't Pass When We Use Dataurl
Archie144 replied to Archie144's topic in Collabion Charts for SharePoint
No one has any idea how to solve this issue? I also observed we can not pass 2 parmeter as a query string wth that servlet url, when I tried to send 2 I could get value of only one and 2nd parameter returns null value. -
Localization Issue-Locale Doesn't Pass When We Use Dataurl
Archie144 posted a topic in Collabion Charts for SharePoint
I'm using dataURL attribute where I'm giving path of my servlet. In my servlet I'm creating xml required for displaying fusion chart and writing that in ServletOutputStraem. When this servlet gets called using dataURL I'm getting en_us locale in that servlet even if I change my locale to chinese locale because of which I get x-axis and y-axis in english only. but I'm getting correct locale in jsp where I've given dataURL path of my servlet. Can anyne tell me how can I get correct browser locale using this dataURL attribute? below is my sample: <param name="FlashVars" value="ChartNoDataText=<%=resource.getMessage(request.getLocale(),"Error.key")%>&LoadDataErrorText=<%=resource.getMessage(request.getLocale(),"Error.key")%>&dataURL=./MyServlet"/> Here I'm getting Error.key localized but I'm not getting strings localized which I'm localizing in MyServlet i.e titles or x -y axis labels