zoukankan      html  css  js  c++  java
  • HighCharts之2D回归直线的散点

    HighCharts之2D回归直线的散点


    1、实例源码

    ScatterLine.html:

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>HighCharts 2D回归直线的散点</title>
    <script type="text/javascript" src="../scripts/jquery-1.11.0.js"></script>
    <script type="text/javascript" src="../scripts/js/highcharts.js"></script>
    <script type="text/javascript">
         $(function(){
        	 $('#scatterLine').highcharts({
                 chart: {
                 },
                 xAxis: {  //设置X轴最小值和最大值
                     min: -0.5,
                     max: 5.5
                 },
                 yAxis: {  //设置Y轴最小值和最大值
                     min: 0,
                     max: 5
                 },
                 title: {
                     text: '回归直线的散点'
                 },
                 series: [{
                     type: 'line',
                     name: '回归直线',
                     data: [[0, 1.11], [5, 4.51]],
                     marker: {
                         enabled: true
                     },
                     states: {
                         hover: {
                             lineWidth: 4   //设置折线的宽度
                         }
                     },
                     enableMouseTracking: true
                 }, {
                     type: 'scatter',
                     name: '散点',
                     data: [2.2, 1.5, 3.8, 1.5, 3.9, 4.2,5.6],
                     marker: {
                         radius: 10  //散点的半径
                     }
                 }]
             });
         });
    </script>
    </head>
    <body>
       <div id="scatterLine" style=" 1200px; height: 500px; margin: 0 auto"></div>
    </body>
    </html><!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>HighCharts 2D回归直线的散点</title>
    <script type="text/javascript" src="../scripts/jquery-1.11.0.js"></script>
    <script type="text/javascript" src="../scripts/js/highcharts.js"></script>
    <script type="text/javascript">
         $(function(){
        	 $('#scatterLine').highcharts({
                 chart: {
                 },
                 xAxis: {  //设置X轴最小值和最大值
                     min: -0.5,
                     max: 5.5
                 },
                 yAxis: {  //设置Y轴最小值和最大值
                     min: 0,
                     max: 5
                 },
                 title: {
                     text: '回归直线的散点'
                 },
                 series: [{
                     type: 'line',
                     name: '回归直线',
                     data: [[0, 1.11], [5, 4.51]],
                     marker: {
                         enabled: true
                     },
                     states: {
                         hover: {
                             lineWidth: 4   //设置折线的宽度
                         }
                     },
                     enableMouseTracking: true
                 }, {
                     type: 'scatter',
                     name: '散点',
                     data: [2.2, 1.5, 3.8, 1.5, 3.9, 4.2,5.6],
                     marker: {
                         radius: 10  //散点的半径
                     }
                 }]
             });
         });
    </script>
    </head>
    <body>
       <div id="scatterLine" style=" 1200px; height: 500px; margin: 0 auto"></div>
    </body>
    </html>

    2、实例结果


  • 相关阅读:
    上机小笔记
    机器人搬重物(BFS)
    排序汇总
    棋盘(BFS)
    权限控制:分配权限1
    asp.net identity 基础概念篇-理解什么是声明
    EntityFramework中几种更改数据的方式
    CodeFirst迁移时出现的中文乱码问题
    javascript Function()
    C#操作数据库(二)【操作SQL Server数据库的常用的类介绍】
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315239.html
Copyright © 2011-2022 走看看