Chart Data

Performance !!!

Bar and Column Charts

Line and Area Charts

Pie and Funnel Charts

Scatter and Bubble Charts

Radar and Polar Charts

Financial Charts

Gantt Charts

Combinational Charts

Dynamic Charts

Working with Chart Axes

Chart Features

Customizing Chart

Client-Side Events


This sample displays a Bubble chart that uses different shapes for the bubble.

For detailed implementation, please take a look at the Aspx, Razor and Controller code tabs.
 
<%@ Page  Language="C#"  Inherits="System.Web.Mvc.ViewPage<IEnumerable<SamplesBrowser.Models.BubbleChartData>>" %>

<%@ Import Namespace="JQChart.Web.Mvc" %>

<!DOCTYPE html>
<html>
<head runat="server">
    <title></title>    
    <link rel="stylesheet" type="text/css" href="~/Content/jquery.jqChart.css" />
    <link rel="stylesheet" type="text/css" href="~/Content/themes/le-frog/jquery-ui-1.8.20.css" />
    <script src="<%: Url.Content("~/Scripts/jquery-1.11.1.min.js") %>" type="text/javascript"></script>
    <script src="<%: Url.Content("~/Scripts/jquery.jqChart.min.js") %>" type="text/javascript"></script>    
	<body>
    <div>
         <%= Html.JQChart()
                .Chart(Model)
                .ID("jqChart")
                .Width(500)
                .Height(300)
                .Title("Bubble Chart")
                .Animation(TimeSpan.FromSeconds(1))
                .Shadows(true)
                .Series(series =>
                    {
                        series.Bubble()
                              .Title("Series 1")
                              .FillStyle("#418CF0")
                              .XValues(el => el.ValueX1)
                              .YValues(el => el.ValueY1)
                              .SizeValues(el => el.ValueSize1)
                              .Markers(marker => marker.LineWidth(1).StrokeStyle(System.Drawing.Color.Black));

                        series.Bubble()
                              .Title("Series 2")
                              .FillStyle("#FCB441")
                              .XValues(el => el.ValueX2)
                              .YValues(el => el.ValueY2)
                              .SizeValues(el => el.ValueSize2)
                              .Markers(marker => marker.MarkerType(MarkerType.Rectangle).LineWidth(1).StrokeStyle(System.Drawing.Color.Black));
                    }
                )
                .Render()%>
    </div>
</body>
</html>

                                        
 
@model IEnumerable<SamplesBrowser.Models.BubbleChartData>
@using JQChart.Web.Mvc

<!DOCTYPE html>
<html>
<head runat="server">
    <title></title>    
    <link rel="stylesheet" type="text/css" href="~/Content/jquery.jqChart.css" />
    <link rel="stylesheet" type="text/css" href="~/Content/themes/le-frog/jquery-ui-1.8.20.css" />
    <script src="@Url.Content("~/Scripts/jquery-1.11.1.min.js")" type="text/javascript"></script>
    <script src="@Url.Content("~/Scripts/jquery.jqChart.min.js")" type="text/javascript"></script>    
	<body>
    <div>
           @(Html.JQChart()
                .Chart(Model)
                .ID("jqChart")
                .Width(500)
                .Height(300)
                .Title("Bubble Chart")
                .Animation(TimeSpan.FromSeconds(1))
                .Shadows(true)
                .Series(series =>
                    {
                        series.Bubble()
                              .Title("Series 1")
                              .FillStyle("#418CF0")
                              .XValues(el => el.ValueX1)
                              .YValues(el => el.ValueY1)
                              .SizeValues(el => el.ValueSize1)
                              .Markers(marker => marker.LineWidth(1).StrokeStyle(System.Drawing.Color.Black));

                        series.Bubble()
                              .Title("Series 2")
                              .FillStyle("#FCB441")
                              .XValues(el => el.ValueX2)
                              .YValues(el => el.ValueY2)
                              .SizeValues(el => el.ValueSize2)
                              .Markers(marker => marker.MarkerType(MarkerType.Rectangle).LineWidth(1).StrokeStyle(System.Drawing.Color.Black));
                    }
                )
                .Render() 
          )
    </div>
</body>
</html>

                                        
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace SamplesBrowser.Models
{
    public class BubbleChartData
    {
        public static List<BubbleChartData> GetData()
        {
            var data = new List<BubbleChartData>();

            data.Add(new BubbleChartData(1, 15, 8, 1, 9, 15));
            data.Add(new BubbleChartData(2, 18, 4, 2, 8, 24));
            data.Add(new BubbleChartData(3, 15, 8, 3, 12, 10));
            data.Add(new BubbleChartData(4, 16, 13, 4, 9, 14));
            data.Add(new BubbleChartData(5, 14, 11, 5, 7, 12));


            return data;
        }

        public BubbleChartData(double valueX1, double valueY1, double valueSize1,
            double valueX2, double valueY2, double valueSize2)
        {
            this.ValueX1 = valueX1;
            this.ValueY1 = valueY1;
            this.ValueSize1 = valueSize1;

            this.ValueX2 = valueX2;
            this.ValueY2 = valueY2;
            this.ValueSize2 = valueSize2;
        }

        public double ValueX1 { get; set; }
        public double ValueY1 { get; set; }
        public double ValueSize1 { get; set; }

        public double ValueX2 { get; set; }
        public double ValueY2 { get; set; }
        public double ValueSize2 { get; set; }
    }
}
                                        
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using SamplesBrowser.Models;

namespace SamplesBrowser.Controllers
{
    public class ChartController : Controller
    {

        public ActionResult BubbleChart()
        {
            return View(BubbleChartData.GetData());
        }

    }
}