Search the Community

Showing results for tags 'multiple charts'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 3 results

  1. Hi everyone, I am displaying multiple charts in webpage (Pie2D charts side by side). While loading the page the charts aligned correctly but while print the page the charts are truncated and not fitting into print page. I am using Window.Print() for printing the page. Is any way to adjust the width/height while printing the page and reset after that? Please provide if you have any ideas. Fusioncharts-XT (v3.12.1). Gone through this feature, but it will not help us. FusionCharts.printManager.enabled(true); Thanks, Krishna
  2. I am relatively new to SharePoint and Collabion Charts and as many before me have been thrown into the deep end so this maybe something simple I am overlooking. I have been creating a dashboard consisting of multiple charts with filters in SP2010. I have finally finished the dashboard and wanted to check that the filters were correct. However, once I saved my changes all the charts no longer display any data, there is just a blank space where the charts should be! The charts have been displaying whilst I have been creating the site and whilst I saved along the way. So why is it different now? If I go back into edit mode, select edit chart and press 'finish' the chart appears. It then disappears when I save the edits. I have already created a smaller dashboard without this issue. I have had colleagues check the site and they too are unable to view the chart. Usually when a chart does not display there is an error message such as 'No data to display' or a message saying 'Retrieving data'. The web part has not been 'minimised'. I do not want to have to delete the chart and retry since it takes so long to create and attach the filters. Can anyone help?
  3. I'm just starting out with FusionCharts and have used the basic example for ASP.NET as a basis to make different charts successfully, but now when I try and put two of them on the same page in a simple HTML table the charts won't show. I've attached my code so I hope somebody can point out where I've gone wrong. Thanks in advance! <%@ Page Language="C#" AutoEventWireup="true" Inherits="BasicExample_BasicChart" Codebehind="Chart3.aspx.cs" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>FusionCharts - Simple</title> <!-- FusionCharts script tag --> <script type="text/javascript" src="../fusioncharts/fusioncharts.js"></script> <!-- End --> </head> <body> <table style="width:100%"> <tr> <td> Chart 1 </td> <td> Chart 2 </td> </tr> <tr> <td> <div style="text-align:center"> <asp:Literal ID="Literal1" runat="server"></asp:Literal> </div> </td> <td> <div style="text-align:center"> <asp:Literal ID="Literal2" runat="server"></asp:Literal> </div> </td> </tr> </table> </body> </html> and my Code Behind: using System; using System.Collections; using System.Configuration; using System.Data; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; // Use the `FusionCharts.Charts` namespace to be able to use classes and methods required to create charts. using FusionCharts.Charts; public partial class BasicExample_BasicChart : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { //Initialize the chart. Chart sales = new Chart("pie3d", "myChart", "600", "300", "jsonurl", "../Data/Data.json"); // Initialize the second chart. Chart chart2 = new Chart("column3d", "myChart2", "600", "400", "jsonurl", "../Data/Data2.json"); // Render the chart Literal1.Text = sales.Render(); Literal2.Text = chart2.Render(); } }