JJUNIOR
Members-
Content count
4 -
Joined
-
Last visited
About JJUNIOR
-
Rank
Forum Newbie
-
Good morning, I have problems in generating the caption for the iPad, anyone know if there is some peculiarity to it. Above are the images of graphs generated in IE9 and to IPAD and code generation. Thank you. image1 generated in IE9 image2 generated in iPad <html> <head> <script language='JavaScript' src='http://localhost/Site/FusionCharts/FusionCharts.js'></script> </head> <body bgcolor='#ffffff'> <div id='chartdiv1' align='center'> </div> <script type='text/javascript'> var myChart = new FusionCharts('http://localhost/Site/FusionCharts/Pie3D.swf', 'myChartId', '980', '240', '0', '0'); myChart.setDataXML(" <chart palette='4' decimals='1' enableSmartLabels='1' labelDistance='500' enableRotation='0' bgAlpha='40,100' style='background-color: transparent' bgRatio='0,100' bgAngle='360' showBorder='0' startingAngle='70' showPercentValues='1' showPercentInToolTip='0' showLegend='1' formatNumberScale='0' legendPosition='RIGHT' > <set label = 'REGIAO SUDESTE' value = '2686802' isSliced='1' /> <set label = 'REGIAO NORTE' value = '321311' /> <set label = 'EXTERIOR' value = '90206' /> </chart> "); myChart.render('chartdiv1'); myChart = null; </script> </body> </html>
-
help please Thanks
-
Good morning, Attachment IE9 with preview images (Image1) and iPad (image2) below is the code for generating the timing and code that generates the graph. Calendar. <td width="111px"> <asp:Label ID="Label3" runat="server" Font-Names="Verdana" Font-Size="8pt">Data Inicial:</asp:Label> <br /> <asp:TextBox ID="txtDataInicial" Width="72px" TabIndex="1" runat="server" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="8pt" OnTextChanged="txtDataInicial_TextChanged" AutoPostBack="True"></asp:TextBox> <ajaxToolkit:CalendarExtender ID="CalendarInicial" runat="server" Format="dd-MM-yyyy" PopupButtonID="btnDataInicial" TargetControlID="txtDataInicial"> </ajaxToolkit:CalendarExtender> <asp:ImageButton ID="btnDataInicial" runat="server" SkinID="calendario" TabIndex="2" /> </td> Graph. <html> <head> <script language='JavaScript' src='http://localhost/FusionCharts/FusionCharts.js'></script> </head> <body bgcolor='#ffffff'> <div id='chartdiv1' align='center'> </div> <script type='text/javascript'> var myChart = new FusionCharts('http://localhost/FusionCharts/Pie3D.swf', 'myChartId', '980', '240', '0', '0'); myChart.setDataXML("<chart palette='4' decimals='1' enableSmartLabels='1' enableRotation='0' bgAlpha='100' bgRatio='0,100' bgAngle='360' showBorder='0' startingAngle='70' showPercentValues='1' showPercentInToolTip='0' Wmode='transparent' > <set label = 'SP' value = '2653668' isSliced='1' /> <set label = 'AM' value = '308557' /> <set label = 'EX' value = '90206' /> <set label = 'MG' value = '36316' /> </chart> "); myChart.render('chartdiv1'); myChart = null; </script> </body> </html> Thanks
-
Good afternoon I have one on my page and pick FusionChart a calendar (CalendarExtender). But the graphic is loaded when the calendar is behind the graphic rendering it impossible to view calendar. This only occurs in the iPad. The same page in IE9 works normally. Thanks.