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 demonstrates how to customize the chart shapes with shapeRendering Event.

Columns with value bigger than 50 are colored in red.

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

<%@ 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>
    <script lang="javascript" type="text/javascript">
        $(document).ready(function () {
            $('#jqChart').bind('shapeRendering', function (e, shape) {
                if (shape.context.y > 50) {
                    shape.fillStyle = 'red';
                }
            });
        });
    </script>
    <div>
        <%= Html.JQChart()
                .Chart()
                .ID("jqChart")
                .Width(500)
                .Height(300)
                .Title("shapeRendering Event")                
                .Border(border => border.StrokeStyle("#6ba851"))
                .Background(background => background.LinearGradient(0, 0, 0, 1).ColorStops(stop =>
                {
                    stop.Add(0, "#d2e6c9");
                    stop.Add(1, "white");
                }))
                .Animation(TimeSpan.FromSeconds(1))
                .Series(series =>
                    {
                        series.Column().Title("Column")
                                       .XValues(new string[] { "A", "B", "C", "D", "E", "F", "G", "H" })
                                       .YValues(new double[] { 46, 35, 68, 30, 27, 85, 43, 29 });
                    }
                )
                .Render()%>
    </div>
</body>
</html>

                                        
 

@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>
    <script lang="javascript" type="text/javascript">
        $(document).ready(function () {
            $('#jqChart').bind('shapeRendering', function (e, shape) {
                if (shape.context.y > 50) {
                    shape.fillStyle = 'red';
                }
            });
        });
    </script>
    <div>
          @(Html.JQChart()
                .Chart()
                .ID("jqChart")
                .Width(500)
                .Height(300)
                .Title("shapeRendering Event")                
                .Border(border => border.StrokeStyle("#6ba851"))
                .Background(background => background.LinearGradient(0, 0, 0, 1).ColorStops(stop =>
                {
                    stop.Add(0, "#d2e6c9");
                    stop.Add(1, "white");
                }))
                .Animation(TimeSpan.FromSeconds(1))
                .Series(series =>
                    {
                        series.Column().Title("Column")
                                       .XValues(new string[] { "A", "B", "C", "D", "E", "F", "G", "H" })
                                       .YValues(new double[] { 46, 35, 68, 30, 27, 85, 43, 29 });
                    }
                )
                .Render() 
          )
    </div>
</body>
</html>

                                        
 

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

namespace SamplesBrowser.Models
{
    public class EmptyChartModel
    { 
    }
}
                                        
 
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 ShapeRenderingEvent() 
        { 
            return View(); 
        }

    }
}