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 set the axis margins.

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>
    <div>
        <%= Html.JQChart()
                .Chart()
                .ID("jqChart")
                .Width(500)
                .Height(300)
                .Title("Axis Margins")
                .Animation(TimeSpan.FromSeconds(1))
                .Axes(axis =>
                    {
                        axis.LinearAxis(Location.Bottom)
                            .LeftMargin(0)
                            .RightMargin(0);

                        axis.LinearAxis(Location.Left)
                            .BottomMargin(90)
                            .TopMargin(20);
                    }
                )
                .Series(series =>
                    {
                        series.SplineArea().Title("Series 1")
                                           .XValues(new double[] { 10, 20, 30, 40, 50, 60, 70 })
                                           .YValues(new double[] { 56, 30, 62, 70, 40, 36, 60 });

                        series.SplineArea().Title("Series 2")
                                           .XValues(new double[] { 10, 20, 30, 40, 50, 60, 70 })
                                           .YValues(new double[] { 46, 25, 48, 35, 32, 30, 40 });

                        series.SplineArea().Title("Series 3")
                                           .XValues(new double[] { 10, 20, 30, 40, 50, 60, 70 })
                                           .YValues(new double[] { 26, 20, 38, 32, 22, 24, 20 });
                    }
                )
                .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>
    <div>
          @(Html.JQChart()
                .Chart()
                .ID("jqChart")
                .Width(500)
                .Height(300)
                .Title("Axis Margins")
                .Animation(TimeSpan.FromSeconds(1))
                .Axes(axis =>
                    {
                        axis.LinearAxis(Location.Bottom)
                            .LeftMargin(0)
                            .RightMargin(0);

                        axis.LinearAxis(Location.Left)
                            .BottomMargin(90)
                            .TopMargin(20);
                    }
                )
                .Series(series =>
                    {
                        series.SplineArea().Title("Series 1")
                                           .XValues(new double[] { 10, 20, 30, 40, 50, 60, 70 })
                                           .YValues(new double[] { 56, 30, 62, 70, 40, 36, 60 });

                        series.SplineArea().Title("Series 2")
                                           .XValues(new double[] { 10, 20, 30, 40, 50, 60, 70 })
                                           .YValues(new double[] { 46, 25, 48, 35, 32, 30, 40 });

                        series.SplineArea().Title("Series 3")
                                           .XValues(new double[] { 10, 20, 30, 40, 50, 60, 70 })
                                           .YValues(new double[] { 26, 20, 38, 32, 22, 24, 20 });
                    }
                )
                .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 AxisMargins()
        {
             return View();
        }

    }
}