BIP-student mobility for studies: Difference between revisions

    From UNITApedia
    No edit summary
    No edit summary
    Line 2: Line 2:
    width=1000px |
    width=1000px |
    height=1000px |
    height=1000px |
    const posList = [
      'left',
      'right',
      'top',
      'bottom',
      'inside',
      'insideTop',
      'insideLeft',
      'insideRight',
      'insideBottom',
      'insideTopLeft',
      'insideTopRight',
      'insideBottomLeft',
      'insideBottomRight'
    ];
    app.configParameters = {
      rotate: {
        min: -90,
        max: 90
      },
      align: {
        options: {
          left: 'left',
          center: 'center',
          right: 'right'
        }
      },
      verticalAlign: {
        options: {
          top: 'top',
          middle: 'middle',
          bottom: 'bottom'
        }
      },
      position: {
        options: posList.reduce(function (map, pos) {
          map[pos] = pos;
          return map;
        }, {})
      },
      distance: {
        min: 0,
        max: 100
      }
    };
    app.config = {
      rotate: 90,
      align: 'left',
      verticalAlign: 'middle',
      position: 'insideBottom',
      distance: 15,
      onChange: function () {
        const labelOption = {
          rotate: app.config.rotate,
          align: app.config.align,
          verticalAlign: app.config.verticalAlign,
          position: app.config.position,
          distance: app.config.distance
        };
        myChart.setOption({
          series: [
            {
              label: labelOption
            },
            {
              label: labelOption
            },
            {
              label: labelOption
            },
            {
              label: labelOption
            }
          ]
        });
      }
    };
    const labelOption = {
      show: true,
      position: app.config.position,
      distance: app.config.distance,
      align: app.config.align,
      verticalAlign: app.config.verticalAlign,
      rotate: app.config.rotate,
      formatter: '{c}  {name|{a}}',
      fontSize: 16,
      rich: {
        name: {}
      }
    };
    option = {
    option = {
       tooltip: {
       tooltip: {
    Line 99: Line 9:
         }
         }
       },
       },
       legend: {
       legend: {},
        data: ['Forest', 'Steppe', 'Desert', 'Wetland']
       grid: {
      },
         left: '3%',
       toolbox: {
         right: '4%',
         show: true,
         bottom: '3%',
        orient: 'vertical',
         containLabel: true
         left: 'right',
         top: 'center',
         feature: {
          mark: { show: true },
          dataView: { show: true, readOnly: false },
          magicType: { show: true, type: ['line', 'bar', 'stack'] },
          restore: { show: true },
          saveAsImage: { show: true }
        }
       },
       },
       xAxis: [
       xAxis: [
         {
         {
           type: 'category',
           type: 'category',
          axisTick: { show: false },
           data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
           data: ['2012', '2013', '2014', '2015', '2016']
         }
         }
       ],
       ],
    Line 129: Line 29:
       series: [
       series: [
         {
         {
           name: 'Forest',
           name: 'Direct',
          type: 'bar',
          emphasis: {
            focus: 'series'
          },
          data: [320, 332, 301, 334, 390, 330, 320]
        },
        {
          name: 'Email',
          type: 'bar',
          stack: 'Ad',
          emphasis: {
            focus: 'series'
          },
          data: [120, 132, 101, 134, 90, 230, 210]
        },
        {
          name: 'Union Ads',
          type: 'bar',
          stack: 'Ad',
          emphasis: {
            focus: 'series'
          },
          data: [220, 182, 191, 234, 290, 330, 310]
        },
        {
          name: 'Video Ads',
          type: 'bar',
          stack: 'Ad',
          emphasis: {
            focus: 'series'
          },
          data: [150, 232, 201, 154, 190, 330, 410]
        },
        {
          name: 'Search Engine',
          type: 'bar',
          data: [862, 1018, 964, 1026, 1679, 1600, 1570],
          emphasis: {
            focus: 'series'
          },
          markLine: {
            lineStyle: {
              type: 'dashed'
            },
            data: [[{ type: 'min' }, { type: 'max' }]]
          }
        },
        {
          name: 'Baidu',
           type: 'bar',
           type: 'bar',
           barGap: 0,
           barWidth: 5,
           label: labelOption,
           stack: 'Search Engine',
           emphasis: {
           emphasis: {
             focus: 'series'
             focus: 'series'
           },
           },
           data: [320, 332, 301, 334, 390]
           data: [620, 732, 701, 734, 1090, 1130, 1120]
         },
         },
         {
         {
           name: 'Steppe',
           name: 'Google',
           type: 'bar',
           type: 'bar',
           label: labelOption,
           stack: 'Search Engine',
           emphasis: {
           emphasis: {
             focus: 'series'
             focus: 'series'
           },
           },
           data: [220, 182, 191, 234, 290]
           data: [120, 132, 101, 134, 290, 230, 220]
         },
         },
         {
         {
           name: 'Desert',
           name: 'Bing',
           type: 'bar',
           type: 'bar',
           label: labelOption,
           stack: 'Search Engine',
           emphasis: {
           emphasis: {
             focus: 'series'
             focus: 'series'
           },
           },
           data: [150, 232, 201, 154, 190]
           data: [60, 72, 71, 74, 190, 130, 110]
         },
         },
         {
         {
           name: 'Wetland',
           name: 'Others',
           type: 'bar',
           type: 'bar',
           label: labelOption,
           stack: 'Search Engine',
           emphasis: {
           emphasis: {
             focus: 'series'
             focus: 'series'
           },
           },
           data: [98, 77, 101, 99, 40]
           data: [62, 82, 91, 84, 109, 110, 120]
         }
         }
       ]
       ]

    Revision as of 12:20, 20 March 2025