soumya

Moderators
  • Content count

    52
  • Joined

  • Last visited

Posts posted by soumya


  1. Hi

    If you want to represent different measures with a single time scale implement FusionTime supported Multivariate visualization.
     
    Please check the following sample http://jsfiddle.net/wgosz8x2/2/

    Also you could check Dual Y axis Visualization https://www.fusioncharts.com/fusiontime/examples/dual-y-axis?framework=javascript
     
    Also please note a single y-axis could be the measurement of a single unit hence using multivariate visualization you are getting multiple y-axes with a single time scale for different measures.
     

  2. Thanks for getting in touch.

    Yes by specifying the initial time interval you could show the data confirming the particular time slice initially 

    The custom range selector control also would confirm the initial time interval set. For reference check, the following sample Specify initial time interval (fusioncharts.com)

    Please check to the sample and implement it accordingly.

    Thanks

    Soumya

     


  3. Hi 

    Thanks for getting in touch.

    Please implement FusionCharts supported Linked chart functionality for achieving the same.

    For further reference please check the following tutorial. https://www.fusioncharts.com/blog/creating-fusioncharts-drill-down-charts-from-database-using-entity-framework-and-linq-in-visual-studio/

    If you want to set any data source for the chart over dataplotClick event please create a data source according to the FusionCharts prescribed format and use setJSONData API method for updating the new data source for the chart.

    According to the requirement we like to suggest the Linked chart functionality and refer to the above-mentioned tutorial.

     

    Thanks

    Soumya 

     


  4. Hi,

     

    The Flash version has been deprecated long ago kindly check with the full JavaScript version of FusionCharts which you could download from https://www.fusioncharts.com/download/fusioncharts-suite-xt

    Also please check with the latest FusionCharts ASP.NET wrapper for further reference please check from the following tutorial link https://www.fusioncharts.com/blog/charting-in-asp-net/

    Thanks

    Soumya


  5. 2 hours ago, db77 said:

    Thanks but it is an old "application" in ASP, not ASP.NET and my customer wants a new option. This "aspimage" is already in place on his web hosting and I can't found it to test on my own web host. I have found another "aspimage" but it is different and don't work on my server.

    Sorry for my bad english, I'm french

    FusionCharts does not support any plugin for Classic ASP and Microsoft has deprecated the Classic ASP hence only possible support is for ASP.NET.

    Please check the tutorial link and implement accordingly.


  6. Hi,

     

    You are implementing a too older version of FusionCharts and FusionCharts ASP.NET wrapper.

    You could check with the latest FusionCharts version and check.

    You could check the following sample showcasing AJAX call in ASP.NET application https://www.dropbox.com/s/10o4hpfolll6sn8/FusionCharts AJAX demo.zip?dl=0

    Also check https://www.dropbox.com/s/oiocpi38vpisnc1/FCDotnetAJAX.zip?dl=0

     

    You could check the following sample for implementing FusionCharts within update panel control https://www.dropbox.com/s/5w2483xh5zqfuf5/Demo UpdatePanel refresh.zip?dl=0

     

    check the above-given sample and implement accordingly based on your requirements.

     

    Thanks

    Soumya

     

     


  7. Hi,

    Yes, you can use the latest FusionCharts JavaScript version and FusionCharts AP.NET wrapper for rendering supported charts in ASP.NET application.

    We would like to request you please check the following tutorial link https://www.fusioncharts.com/blog/charting-in-asp-net/ for step by step process of including the FusionCharts.dll and how you could render the chart.

    Also sample could be downloaded from there.

     

    Hope this would help.

    Thanks

    Soumya

     


  8. Hi,

     

    Yes, you need to provide multiple measures for each category label.

    For reference check the below code snippet and implement accordingly.

     

    using System;
    using System.Web.Mvc;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Threading.Tasks;
    using FusionCharts.Visualization;
    using FusionCharts.DataEngine;
    using System.Data;
    namespace FusionChartsSamples
    {
    	public class HomeController : Controller
    	{
    		
    		public ActionResult Index()
    		{				
    			DataTable ChartData = new DataTable();
    			ChartData.Columns.Add("Programming Language", typeof(System.String));
    			ChartData.Columns.Add("Users", typeof(System.Double));
    			ChartData.Rows.Add("Java",62000);
    			ChartData.Rows.Add("Python",46000);
    			ChartData.Rows.Add("Javascript",38000);
    			ChartData.Rows.Add("C++",31000);
    			ChartData.Rows.Add("C#",27000);
    			ChartData.Rows.Add("PHP",14000);
    			ChartData.Rows.Add("Perl",14000);
    
    			// Create static source with this data table
                StaticSource source = new StaticSource(ChartData);
                // Create instance of DataModel class
                DataModel model = new DataModel();
                // Add DataSource to the DataModel
                model.DataSources.Add(source);
                // Instantiate Column Chart
                Charts.ColumnChart column = new Charts.ColumnChart("first_chart");
                // Set Chart's width and height
                column.Width.Pixel(700);
                column.Height.Pixel(400);
                // Set DataModel instance as the data source of the chart
                column.Data.Source = model;
                // Set Chart Title
                column.Caption.Text = "Most popular programming language";
    			// Sset chart sub title
    			column.SubCaption.Text = "2017-2018";
                // hide chart Legend
                column.Legend.Show = false;
                // set XAxis Text
                column.XAxis.Text = "Programming Language";
                // Set YAxis title
                column.YAxis.Text = "User";
                column.ThemeName = FusionChartsTheme.ThemeName.FUSION;
                
                ViewData["Chart"] = column.Render();
                return View();
    		}
    
    		
    	}
    }

    For reference check the following sample   https://dotnetfiddle.net/nVVeWE

     


  9. Hi,

    The gradient legend is showcasing a pane which is derived from the "colorRange" definitions where the color objects need to define for numeric range blends with the next color allowing to form a gradient strip.

    According to your use case you need to set color object from lower to higher value i.e from white to red. For reference please check http://jsfiddle.net/Soumya_dutta/ema79zrf/2/ where the generic definition is provided within "colorRange" object and each color object defining the specific numeric range corresponding to a particular color.

    Hope this would help.


  10. Hi Harry,

    According to your scenario, you want to fetch data from the database periodically and want to append within the chart data source.
     
    Hence we would like to suggest you please create a controller Action method for fetching records from the database and via AJAX you can have the result from view.
     
    Please check the following regarding how to perform AJAX call over a time interval https://forums.asp.net/t/2090502.aspx?Calling+MVC+Action+from+JavaCripts+using+setInterval
     
     
    Regarding partial vie update we would like to request you please implement Partial view rendering in ASP.NET MVC for reference please check https://www.red-gate.com/simple-talk/dotnet/asp-net/revisiting-partial-view-rendering-in-asp-net-mvc/
     
    Moreover, we went through the attached code snippet of the Razor view and observed the ASP.NET wrapper is not implemented.
     
    Please note FusionCharts support ASP.NET wrapper for rendering supported charts in ASP.NET environment for reference you could check the following tutorial link https://www.fusioncharts.com/blog/rendering-fusioncharts-in-asp-net-mvc-framework-using-razor-view/
     
    Also, like to let you know you could call API methods using the FusionCharts wrapper for reference please check https://www.fusioncharts.com/dev/getting-started/aspnet/slice-data-plot-using-custom-api-in-aspnet
     
    Please check the above mentioned suggestions and implement accordingly.
     
    Thanks

  11. Hay.

    I would like to suggest you to implement jQuery modal popup for showcasing the child chart after clicking on the parent chart data plot. For reference please check the following sample http://jsfiddle.net/Soumya_dutta/xvbfm7ds/9/

    Now you might ask me why I am suggesting to implement jQuery modal pop up for your scenario hence check out the following points.

    1. It is easier to implement jQuery modal pop up.

    2. If you want to implement query string to pass child chart information on the fly it is merely possible because FusionCharts take the entire JSON/XML structure for parents as well as child chart data source altogether only thing is possible you could specify a different JSON file for each child chart.

    3. The entire code if you implement jQuery modal popup it would stay in client side no serverside interaction like query string is not necessary hence more secure and fast.

    Please check the sample and implement the same in ASP.NET environment.


  12. Hi,

    Thanks for getting in touch.

    You need to write data access methodology for accessing data from the underline database and after fetching data you need to convert it in prescribed JSON or XML format for rendering the supported chart.

    For further reference please check our tutorial link showcasing how data from SQL database could be fetched and render FusionCharts supported chart https://www.fusioncharts.com/blog/creating-fusioncharts-drill-down-charts-from-database-using-entity-framework-and-linq-in-visual-studio/

    Hope this would help.


  13. Hi Adesh,

    We have responded to your query over our support channel, please check the raised ticket reply and let us know.

    Moreover, according to the attached image here, we would like to suggest you could implement FusionCharts supported Spark Line chart.

    For further reference regarding FusionCharts supported SparkLine chart please visit https://www.fusioncharts.com/dev/chart-guide/standard-charts/spark-charts

    Also, you could check the live samples showcasing FusionCharts supported SparkLine chart please visit https://www.fusioncharts.com/javascript-chart-fiddles/?type=spark-line-chart

    Thanks

     


  14. Hi

    Yes, All supported charts except ZoomLine chart support drill-down functionality.
     
    Please note when implementing the linked chart functionality the child chart data is included in parent chart and the child chart data structure should confirm the parent chart data structure.
     
    For further reference please check the following documentation link for the drill-down functionality of FusionCharts https://www.fusioncharts.com/dev/chart-guide/chart-configurations/drill-down#chart-links-linked-charts-8
     
    Please check the documentation and implement accordingly.
     
    Hope this would help

  15. Hi,

    Thanks for getting in touch.

    FusionCharts supports official ASP.NET wrapper for rendering FusionCharts supported charts in ASP.NET environment also FusionCharts support official jQuery helper for rendering FusionCharts using jQuery syntax. For further reference regarding FusionCharts jQuery helper please visit https://www.fusioncharts.com/dev/using-with-javascript-libraries/jquery/introduction.html

    For further reference regarding FusionCharts official ASP.NET wrapper please visit https://www.fusioncharts.com/dev/using-with-server-side-languages/asp-net/introduction.html

    According to your implementation, we would like to suggest either FusionCharts supported ASP.NET wrapper or jQuery helper could be implemented.

    Also check the xml you are creating is in FusionCharts prescribed xml format for reference please visit our tutorial link. https://www.fusioncharts.com/blog/rendering-fusioncharts-vb-net-using-database/

    Thanks