MVC Line Chart Application

Source: Internet
Author: User

<script src= "~/scripts/highcharts-3.0.10/js/highcharts.js" ></script>//layout display Line chart JS
<script src= "~/scripts/highcharts-3.0.10/js/modules/exporting.js" ></script>//export function js

<script type= "Text/javascript" >
$ (function () {
$ (' #container '). Highcharts ({
Title: {
Text: ' Attendance graph ',
X: -20//center
},

Xaxis: {
Categories: @Html. Raw (Hidmodel.datajson)//x axis column JSON data assignment before forwarding to JSON
},
YAxis: {
Title: {
Text: ' Attendance rate (%) '
},
Plotlines: [{
value:0,
Width:1,
Color: ' #808080 '
}]
},
ToolTip: {
Valuesuffix: '% '
},
Legend: {

X Axis name Display right

Layout: ' Vertical ',
Align: ' right ',
VerticalAlign: ' Middle ',
borderwidth:0
},
Series: [{
Name: ' Attendance rate ',
Data: @Html. Raw (Hidmodel.datadicjson)//y the value of the axis value JSON data before forwarding to JSON
}]
});
});
</script>

Hidmodel Custom Objects

<div id= "Container" style= "min-width:300px; height:400px; margin:0 Auto ">

</div>

Data address: http://www.hcharts.cn/

MVC Line Chart Application

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.