schulle877
Members-
Content count
14 -
Joined
-
Last visited
About schulle877
-
Rank
Junior Member
-
Hi! I have the same question. You answered a wrong answer. What about forcing js-charts using the PHP class. I worked many hours to change my code from php to php class. Now I want to test js, without switching back to pure php. Will there be a phpclass method to force the browser using js??? Sven
-
schulle877 started following Links For Categories Behaves Different
-
Hi! I'm using the most current version of FC, 3.2 in combination with the php classes. There is a strange behaviour of "StackedColumn3D" vs. "StackedBar3D". There is a bool called $bLinks which switches if category labels should be linked. This only works with the combination of defining a style and encoding a url. (Previous post: See this) Following code WORKS for StackedBar3D: $FC_wst_verlauf = new FusionCharts("StackedBar3D",$iWidth,$iHeight); // stacked chart if ($bLinks){ $FC_wst_verlauf->defineStyle("CategoryLabelStyle","font","isHTML=1;Underline=0;color=0434B1;"); $FC_wst_verlauf->applyStyle("DataLabels","CategoryLabelStyle"); } ... if ($bLinks) { $link = urlencode("example.php?reporttype=list&filter_month=".$month["month"]); $link = "<a href="".$link."">".$month["month"]."</a>"; } else $link = $month["month"]; ... looking like the first attachment I want this to work for StackedColumn3D, so same code, different swf file DOESN'T WORK, looking like the second attachment. May there be an error in the swf-file? Thanks. Sven Schulze
-
Hi! Thanks for your help. Here is the chart you requested. Greetings. Sven
-
Hi! I will use a link for the chart caption to enlarge the chart. By clicking the categories down below I will have a data list for the the selected category. I use PHP class. Here is my code to link the caption using styles. $linkstart = "<a href=index.php?reporttype=report&charttype=trend'>"; $linkend = "</a>"; $link = $linkstart."chart caption text".$linkend; $strParam = "caption=$link;"; ... $FC->defineStyle("CaptionLabelStyle","font","isHTML=1;Underline=0;color=0434B1;"); $FC->applyStyle("CAPTION","CaptionLabelStyle"); I do not use urlencode for the linkstart and linkend because it will produce XML-errors. For categories of a stacked column this code works fine, I used urlencode: $link = urlencode("index.php?reporttype=report"); $link = "<a href="".$link."">".$categorytext."</a>"; I tried the code for the category links also for the caption, but there is always a xml error. (when using urlencode) Plese help me resolving this. Sven Schulze
-
Hi! I use a stacked bar/column chart. After hiding a complete dataset using the interactive legend, the remaining ones stay as flying ophans up in the air. It should be possible that when hiding the most bottom dataset of a stacked column, the remaining stacks go down to the baseline. Is there a possibility to do this? Greetings. Sven Schulze
-
Hi everyone! I'm using FC v3.2 StackedColumn3D. I want to have a clickurl for the entire chart AND a link url for the data elements. On clicking the chart where there is no column or data element it should enlarge itself. By clicking a column, a list with the details of the selected category should be shown. I added clickurl to the chart params and a link to the data elements. My problem is: The clickurl overrides the link. If I remove the clickurl the links work. Please help me resolving this problem. Thanks, Sven
-
Hi! Thank you, that's exactly what I needed! Greetings. Sven
-
Hi! I have a StackedBar3D chart. I want to use it for drilldown. I can assign links to set elements using $FC->addChartData($value,"link=www.web.de"); Is it possible to assign links to category elements, so that all stacked parts of the bar and even the category label is linked? Code must be like $FC->addCategory($categoryname,"link=www.web.de"); Or is there another possibility, except linking all stacked parts Thank you. Sven Schulze
-
Hi! Thank you. 1) it's okay, just for cosmetics... 2)see below 3)in germany we say "2 flies with one flap". I don't need the hidden line anymore because the showSum works perfectly. Sven
-
Hello! I use StackedColumn3DLineDY.swf. 1)Is it possible to change the look of the columns, so that they are round? 2)Is it possible to show something like a summarized value of all stacked parts ABOVE to column? 3)Actually I'm using a data line with marks and with hidden line to display the values as desired in 2). But that's not so fine. Is it possible to "alpharize" the points too, so that only the values are visible on the chart? Thank you, Sven
-
Hi! Another little question: How can I control where the label of the data point is? It should always be above the line and data point. Sven
-
Hi! Thank you. My mistake was to use "LineAlpha=0.1" instead of "alpha=0.1" in the dataset params. Now it works. I'm using PHP class. Sometimes syntax is a bit confusing in comparison to standard xml code. But in fact, PHP class is very easy to use. Sven
-
Hi! Here is the chart I already have: I want to hide the connections between data points on the line, so that only values and points are visible. The value is the sum of all stacked column values. If there is another possibility to show this sum value ABOVE the column, please tell me. Thanks, Sven
-
Hello! I have the same problem. I use StackedColumn3DLineDY and I want to display the sum of all stacked above the highest data element. I tried to use the line, but lineThickness=0 failed. LineAlpha=0.1 was also not successful. What should I try next? Thanks, Sven