• 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、实例结果


  • 相关阅读:
    c++ 函数中的部分代码执行一次
    如何限制对象只能建立在堆上或者栈上
    FFMPEG Qt视频播放器
    C/C++中带可变参数的函数
    柔性数组
    压缩图片网站
    vscode存盘时格式化
    两个i标签之间有缝隙
    node 中process进程argv,argv0,execArgv,execPath
    chalk插件 使终端输出的字带颜色
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315239.html
Copyright © 2020-2023  润新知