charts project

charts project_第1张图片
项目进度
data: [{
                value: 3,
                name: '已完成'
            }, {
                value: 12,
                name: '未完成'
            }]
charts project_第2张图片
延误率
data: [{
    value: 1,
    name: '过期'
}, {
    value: 14,
    name: '未过期'   //除了过期的数据,其它均为未过期
}]
charts project_第3张图片
数量总览
unfinished:12,
finished:3,
overdue:1,
sum:15
charts project_第4张图片
任务阶段
//第一阶段任务名称
xAxis: {
            data: ['一阶段', '\n二阶段', '\n\n一级任务3', '一级任务4', '\n一级任务5', '\n\n一级任务6', '一级任务7', '\n一级任务8', '\n\n一级任务9', '一级任务10', '\n一级任务11', '\n\n一级任务12'] 
        },
series: [{
            name: '过期',
            type: 'bar',
            stack: 'sum',
            data: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]  //每个阶段过期的任务数量.
        }, {
            name: '未完成',
            type: 'bar',
            stack: 'sum',
            data: [2, 13, 9, 11, 15, 20, 25, 30, 25, 20, 15, 10]
        }, {
            name: '已完成',
            type: 'bar',
            stack: 'sum',
            barWidth: '40px',
            data: [4, 12, 8, 20, 25, 30, 40, 50, 40, 30, 20, 10]
        }]
charts project_第5张图片
任务标签
 //提取top20 的标签, 按数量从少到多排列.
legend: {
            data: ['其它', '紧急', '设计', '非常紧急', '重要', '注意', '请注意截至日期', '今天必须交', '安全!!!', '~~质量~~', '信息安全', '公司信誉']
        },

            
            data: [{
                value: 48,
                name: '紧急'
            }, {
                value: 55,
                name: '设计'
            }, {
                value: 66,
                name: '非常紧急'
            }, {
                value: 135,
                name: '重要'
            }, {
                value: 159,
                name: '注意'
            }, {
                value: 259,
                name: '请注意截至日期'
            }, {
                value: 312,
                name: '今天必须交'
            }, {
                value: 413,
                name: '安全!!!'
            }, {
                value: 528,
                name: '~~质量~~'
            }, {
                value: 588,
                name: '信息安全'
            }, {
                value: 598,
                name: '公司信誉'
            }]

charts project_第6张图片
项目日历
data:[{
        id: 1,
        content: '项目登记',
        className: "green",
        start: '2016-11-01'
    }, {
        id: 2,
        content: '立项申请',
        start: '2016-11-09'
    }, {
        id: 3,
        content: '中标',
        className: "red",
        start: '2016-11-20'
    }, {
        id: 4,
        content: '投标',
        start: '2016-11-10',
        end: '2016-11-19'
    }, {
        id: 5,
        content: '签订合同',
        start: '2016-11-25'
    }, {
        id: 6,
        content: '设计启动',
        start: '2016-11-27'
    }]
charts project_第7张图片
关系图
nodes : [{
        id: 0,
        "label": "梁少华",

        "group": 1
    }, {
        id: 1,
        "label": "孙敏",
        "group": 1
    }, {
        id: 2,
        "label": "毛仕涛",
        "group": 1
    }, {
        id: 3,
        "label": "凌刚",
        value: 50,
        "group": 1
    }, {
        id: 4,
        "label": "施媛",
        "group": 1
    }, {
        id: 5,
        "label": "刘明凌",
        "group": 1
    }, {
        id: 6,
        "label": "潘文",
        "group": 1
    }, {
        id: 7,
        "label": "潘慧",
        "group": 1
    }, {
        id: 8,
        "label": "蒋波",
        "group": 1
    }, {
        id: 9,
        "label": "徐保利",
        "group": 1
    }, {
        id: 10,
        "label": "高守义",
        "group": 2
    }, {
        id: 11,
        "label": "戴文强",
        value: 60,
        "group": 2
    }, {
        id: 12,
        "label": "于国宾",
        "group": 3
    }, {
        id: 13,
        "label": "姜祖祥",
        "group": 2
    }, {
        id: 14,
        "label": "朱兵",
        "group": 2
    }, {
        id: 15,
        "label": "刘娟",
        "group": 2
    }, {
        id: 16,
        "label": "方圆",
        "group": 3
    }, {
        id: 17,
        "label": "邱劲洪",
        "group": 3
    }, {
        id: 18,
        "label": "王荣",
        "group": 3
    }, {
        id: 19,
        "label": "吴永华",
        "group": 3
    }, {
        id: 20,
        "label": "胡剑锋",
        "group": 3
    }, {
        id: 21,
        "label": "孙景辉",
        "group": 3
    }, {
        id: 22,
        "label": "李易霞",
        "group": 3
    }, {
        id: 23,
        "label": "王钧",
        value: 60,
        "group": 3
    }, {
        id: 24,
        "label": "柯召",
        "group": 4
    }, {
        id: 25,
        "label": "王海刚",
        "group": 4
    }, {
        id: 26,
        "label": "曹孝国",

        "group": 5
    }, {
        id: 27,
        "label": "唐明辉",
        "group": 4
    }, {
        id: 28,
        "label": "郑立群",
        "group": 0
    }, {
        id: 29,
        "label": "童安民",
        "group": 2
    }, {
        id: 30,
        "label": "叶清华",
        "group": 3
    }];


    edges : [{
        "from": 1,
        "to": 0
    }, {
        "from": 2,
        "to": 0
    }, {
        "from": 3,
        "to": 0
    }, {
        "from": 3,
        "to": 2
    }, {
        "from": 4,
        "to": 0
    }, {
        "from": 5,
        "to": 0
    }, {
        "from": 6,
        "to": 0
    }, {
        "from": 7,
        "to": 0
    }, {
        "from": 8,
        "to": 0
    }, {
        "from": 9,
        "to": 0
    }, {
        "from": 11,
        "to": 10
    }, {
        "from": 11,
        "to": 3
    }, {
        "from": 11,
        "to": 2
    }, {
        "from": 11,
        "to": 0
    }, {
        "from": 12,
        "to": 11
    }, {
        "from": 13,
        "to": 11
    }, {
        "from": 14,
        "to": 11
    }, {
        "from": 15,
        "to": 11
    }, {
        "from": 23,
        "to": 16
    }, {
        "from": 23,
        "to": 17
    }, {
        "from": 23,
        "to": 18
    }, {
        "from": 23,
        "to": 19
    }, {
        "from": 23,
        "to": 20
    }, {
        "from": 23,
        "to": 21
    }, {
        "from": 23,
        "to": 22
    }, {
        "from": 23,
        "to": 12
    }, {
        "from": 23,
        "to": 11
    }, {
        "from": 24,
        "to": 23
    }, {
        "from": 24,
        "to": 11
    }, {
        "from": 25,
        "to": 24
    }, {
        "from": 25,
        "to": 23
    }, {
        "from": 25,
        "to": 11
    }, {
        "from": 26,
        "to": 24
    }, {
        "from": 26,
        "to": 11
    }, {
        "from": 26,
        "to": 16
    }, {
        "from": 26,
        "to": 25
    }, {
        "from": 27,
        "to": 11
    }, {
        "from": 27,
        "to": 23
    }, {
        "from": 27,
        "to": 25
    }, {
        "from": 27,
        "to": 24
    }, {
        "from": 27,
        "to": 26
    }, {
        "from": 28,
        "to": 11
    }, {
        "from": 28,
        "to": 27
    }, {
        "from": 29,
        "to": 23
    }, {
        "from": 29,
        "to": 27
    }, {
        "from": 29,
        "to": 11
    }, {
        "from": 30,
        "to": 23
    }];
charts project_第8张图片
人力资源日历
groups : [
    {"content": "梁少华", "id": "Formula E", "value": 1, className:'openwheel'},
    {"content": "孙敏", "id": "WRC", "value": 2, className:'rally'},
    {"content": "毛仕涛", "id": "MotoGP", "value": 3, className:'motorcycle'},
    {"content": "凌刚", "id": "V8SC", "value": 4, className:'touringcars'},
    {"content": "施媛", "id": "WTCC", "value": 5, className:'touringcars'},
    {"content": "刘明凌", "id": "F1", "value": 6, className:'openwheel'},
    {"content": "潘文", "id": "SBK", "value": 7, className:'motorcycle'},
    {"content": "潘慧", "id": "IndyCar", "value": 8, className:'openwheel'},
    {"content": "蒋波", "id": "MotoAmerica", "value": 9, className:'motorcycle'},
    {"content": "徐保利", "id": "SGP", "value": 10, className:'rally'},
    {"content": "高守义", "id": "EWC", "value": 11, className:'endurance'},
    {"content": "戴文强", "id": "BSB", "value": 12, className:'motorcycle'},
    {"content": "于国宾", "id": "DTM", "value": 13, className:'touringcars'},
    {"content": "姜祖祥", "id": "BTCC", "value": 14, className:'touringcars'},
    {"content": "朱兵", "id": "WorldRX", "value": 15, className:'rally'},
    {"content": "刘娟", "id": "WSR", "value": 16, className:'openwheel'},
    {"content": "方圆", "id": "Roads", "value": 17, className:'motorcycle'},
    {"content": "邱劲洪", "id": "WEC", "value": 18, className:'endurance'},
    {"content": "王荣", "id": "GP2", "value": 19, className:'openwheel'}
  ]);
  

  items :[
    {start: new Date(2015, 6, 2), end: new Date(2015, 6, 6), group:"WRC", className:"rally", content:"Rally Poland",id:"[email protected]"},
    {start: new Date(2015, 6, 3), end: new Date(2015, 6, 6), group:"F1", className:"openwheel", content:"Britain",id:"[email protected]"},
    {start: new Date(2015, 6, 3), end: new Date(2015, 6, 6), group:"WorldRX", className:"rally", content:"Sweden",id:"[email protected]"},
    {start: new Date(2015, 6, 3), end: new Date(2015, 6, 6), group:"BSB", className:"motorcycle", content:"Round 5",id:"[email protected]"},
    {start: new Date(2015, 6, 4), end: new Date(2015, 6, 5), group:"SGP", className:"rally", content:"Cardiff",id:"[email protected]"},
    {start: new Date(2015, 6, 6), end: new Date(2015, 6, 10), group:"Roads", className:"motorcycle", content:"Southern 100",id:"[email protected]"},
    {start: new Date(2015, 6, 10), end: new Date(2015, 6, 13), group:"MotoGP", className:"motorcycle", content:"Germany",id:"[email protected]"},
    {start: new Date(2015, 6, 10), end: new Date(2015, 6, 13), group:"DTM", className:"touringcar", content:"Zandvoort",id:"[email protected]"},
    {start: new Date(2015, 6, 10), end: new Date(2015, 6, 13), group:"IndyCar", className:"openwheel", content:"Wisconsin 250",id:"[email protected]"},
    {start: new Date(2015, 6, 10), end: new Date(2015, 6, 13), group:"V8SC", className:"touringcar", content:"Townsville 400",id:"[email protected]"},
    {start: new Date(2015, 6, 10), end: new Date(2015, 6, 13), group:"WTCC", className:"touringcar", content:"Portugal",id:"[email protected]"},
    {start: new Date(2015, 6, 11), end: new Date(2015, 6, 13), group:"WSR", className:"openwheel", content:"Austria",id:"[email protected]"},
    {start: new Date(2015, 6, 16), end: new Date(2015, 6, 19), group:"IndyCar", className:"openwheel", content:"Iowa Corn Indy 300",id:"[email protected]"},
    {start: new Date(2015, 6, 17), end: new Date(2015, 6, 20), group:"SBK", className:"motorcycle", content:"USA",id:"[email protected]"},
    {start: new Date(2015, 6, 17), end: new Date(2015, 6, 20), group:"BSB", className:"motorcycle", content:"Round 6",id:"[email protected]"},
    {start: new Date(2015, 6, 17), end: new Date(2015, 6, 20), group:"MotoAmerica", className:"motorcycle", content:"Mazda Raceway",id:"[email protected]"},
    {start: new Date(2015, 6, 18), end: new Date(2015, 6, 19), group:"SGP", className:"rally", content:"Daugavpils",id:"[email protected]"},
    {start: new Date(2015, 6, 24), end: new Date(2015, 6, 27), group:"F1", className:"openwheel", content:"Hungary",id:"[email protected]"},
    {start: new Date(2015, 6, 25), end: new Date(2015, 6, 26), group:"SGP", className:"rally", content:"Målilla",id:"[email protected]"},
    {start: new Date(2015, 6, 26), end: new Date(2015, 6, 27), group:"EWC", className:"endurance", content:"Suzuka 8 Hours",id:"[email protected]"},
    {start: new Date(2015, 6, 30), end: new Date(2015, 7, 3), group:"WRC", className:"rally", content:"Rally Finland",id:"[email protected]"},
    {start: new Date(2015, 6, 31), end: new Date(2015, 7, 3), group:"BSB", className:"motorcycle", content:"Round 7",id:"[email protected]"},
    {start: new Date(2015, 6, 31), end: new Date(2015, 7, 3), group:"V8SC", className:"touringcar", content:"Ipswich SuperSprint",id:"[email protected]"},
    {start: new Date(2015, 6, 31), end: new Date(2015, 7, 3), group:"DTM", className:"touringcar", content:"Spielberg",id:"[email protected]"},
    {start: new Date(2015, 6, 31), end: new Date(2015, 7, 3), group:"IndyCar", className:"openwheel", content:"Honda Indy 200",id:"[email protected]"},
    {start: new Date(2015, 6, 31), end: new Date(2015, 7, 3), group:"SBK", className:"motorcycle", content:"Malaysia",id:"[email protected]"},
    {start: new Date(2015, 7, 3), end: new Date(2015, 7, 9), group:"Roads", className:"motorcycle", content:"Ulster Grand Prix",id:"[email protected]"},
    {start: new Date(2015, 7, 7), end: new Date(2015, 7, 9), group:"WorldRX", className:"rally", content:"Canada",id:"[email protected]"},
    {start: new Date(2015, 7, 7), end: new Date(2015, 7, 10), group:"MotoAmerica", className:"motorcycle", content:"INDY",id:"[email protected]"},
    {start: new Date(2015, 7, 7), end: new Date(2015, 7, 10), group:"MotoGP", className:"motorcycle", content:"Indianapolis",id:"[email protected]"},
    {start: new Date(2015, 7, 8), end: new Date(2015, 7, 10), group:"BTCC", className:"touringcar", content:"Rounds 16, 17 & 18",id:"[email protected]"},
    {start: new Date(2015, 7, 8), end: new Date(2015, 7, 9), group:"SGP", className:"rally", content:"Horsens",id:"[email protected]"},
    {start: new Date(2015, 7, 10), end: new Date(2015, 7, 12), group:"Formula E", className:"openwheel", content:"Pre-season test 1",id:"[email protected]"},
    {start: new Date(2015, 7, 14), end: new Date(2015, 7, 17), group:"MotoGP", className:"motorcycle", content:"Czech Republic",id:"[email protected]"},
    {start: new Date(2015, 7, 17), end: new Date(2015, 7, 19), group:"Formula E", className:"openwheel", content:"Pre-season test 2",id:"[email protected]"},
    {start: new Date(2015, 7, 20), end: new Date(2015, 7, 24), group:"WRC", className:"rally", content:"Rallye Deutschland",id:"[email protected]"},
    {start: new Date(2015, 7, 21), end: new Date(2015, 7, 24), group:"IndyCar", className:"openwheel", content:"Pocono IndyCar 500",id:"[email protected]"},
    {start: new Date(2015, 7, 21), end: new Date(2015, 7, 24), group:"BSB", className:"motorcycle", content:"Round 8",id:"[email protected]"},
    {start: new Date(2015, 7, 21), end: new Date(2015, 7, 24), group:"WorldRX", className:"rally", content:"Norway",id:"[email protected]"},
    {start: new Date(2015, 7, 21), end: new Date(2015, 7, 24), group:"F1", className:"openwheel", content:"Belgium",id:"[email protected]"},
    {start: new Date(2015, 7, 21), end: new Date(2015, 7, 24), group:"V8SC", className:"touringcar", content:"Sydney Motorsport Park SuperSprint",id:"[email protected]"},
    {start: new Date(2015, 7, 22), end: new Date(2015, 7, 23), group:"EWC", className:"endurance", content:"Oschersleben 8 Hours",id:"[email protected]"},
    {start: new Date(2015, 7, 22), end: new Date(2015, 8, 5), group:"Roads", className:"motorcycle", content:"Classic TT & Manx GP",id:"[email protected]"},
    {start: new Date(2015, 7, 22), end: new Date(2015, 7, 24), group:"BTCC", className:"touringcar", content:"Rounds 19, 20 & 21",id:"[email protected]"},
    {start: new Date(2015, 7, 24), end: new Date(2015, 7, 26), group:"Formula E", className:"openwheel", content:"Pre-season test 3",id:"[email protected]"},
    {start: new Date(2015, 7, 28), end: new Date(2015, 7, 31), group:"DTM", className:"touringcar", content:"Moscow Raceway",id:"[email protected]"},
    {start: new Date(2015, 7, 28), end: new Date(2015, 7, 31), group:"IndyCar", className:"openwheel", content:"Grand Prix of Sonoma",id:"[email protected]"},
    {start: new Date(2015, 7, 28), end: new Date(2015, 7, 31), group:"MotoGP", className:"motorcycle", content:"Great Britain",id:"[email protected]"},
    {start: new Date(2015, 7, 29), end: new Date(2015, 7, 30), group:"SGP", className:"rally", content:"Gorzów",id:"[email protected]"},
    {start: new Date(2015, 7, 30), end: new Date(2015, 7, 31), group:"WEC", className:"endurance", content:"6 Hours of Nürburgring",id:"[email protected]"},
    {start: new Date(2015, 8, 4), end: new Date(2015, 8, 7), group:"BSB", className:"motorcycle", content:"Round 9",id:"[email protected]"},
    {start: new Date(2015, 8, 4), end: new Date(2015, 8, 7), group:"WorldRX", className:"rally", content:"France",id:"[email protected]"},
    {start: new Date(2015, 8, 4), end: new Date(2015, 8, 7), group:"F1", className:"openwheel", content:"Italy",id:"[email protected]"},
    {start: new Date(2015, 8, 5), end: new Date(2015, 8, 7), group:"WSR", className:"openwheel", content:"United Kingdom",id:"[email protected]"},
    {start: new Date(2015, 8, 5), end: new Date(2015, 8, 7), group:"BTCC", className:"touringcar", content:"Rounds 22, 23 & 24",id:"[email protected]"},
    {start: new Date(2015, 8, 10), end: new Date(2015, 8, 14), group:"WRC", className:"rally", content:"Rally Australia",id:"[email protected]"},
    {start: new Date(2015, 8, 11), end: new Date(2015, 8, 14), group:"V8SC", className:"touringcar", content:"Sandown 500",id:"[email protected]"},
    {start: new Date(2015, 8, 11), end: new Date(2015, 8, 14), group:"MotoAmerica", className:"motorcycle", content:"New Jersey",id:"[email protected]"},
    {start: new Date(2015, 8, 11), end: new Date(2015, 8, 14), group:"MotoGP", className:"motorcycle", content:"San Marino",id:"[email protected]"},
    {start: new Date(2015, 8, 11), end: new Date(2015, 8, 14), group:"WTCC", className:"touringcar", content:"Japan",id:"[email protected]"},
    {start: new Date(2015, 8, 11), end: new Date(2015, 8, 14), group:"DTM", className:"touringcar", content:"Oschersleben",id:"[email protected]"},
    {start: new Date(2015, 8, 12), end: new Date(2015, 8, 14), group:"WSR", className:"openwheel", content:"Germany",id:"[email protected]"},
    {start: new Date(2015, 8, 12), end: new Date(2015, 8, 13), group:"SGP", className:"rally", content:"Krško",id:"[email protected]"},
    {start: new Date(2015, 8, 18), end: new Date(2015, 8, 21), group:"SBK", className:"motorcycle", content:"Spain",id:"[email protected]"},
    {start: new Date(2015, 8, 18), end: new Date(2015, 8, 21), group:"BSB", className:"motorcycle", content:"Round 10",id:"[email protected]"},
    {start: new Date(2015, 8, 18), end: new Date(2015, 8, 21), group:"F1", className:"openwheel", content:"Singapore",id:"[email protected]"},
    {start: new Date(2015, 8, 18), end: new Date(2015, 8, 21), group:"WorldRX", className:"rally", content:"Barcelona",id:"[email protected]"},
    {start: new Date(2015, 8, 19), end: new Date(2015, 8, 20), group:"WEC", className:"endurance", content:"6 Hours of Circuit of the Americas",id:"[email protected]"},
    {start: new Date(2015, 8, 19), end: new Date(2015, 8, 21), group:"EWC", className:"endurance", content:"Bol d’Or",id:"[email protected]"},
    {start: new Date(2015, 8, 25), end: new Date(2015, 8, 28), group:"MotoGP", className:"motorcycle", content:"Aragon",id:"[email protected]"},
    {start: new Date(2015, 8, 25), end: new Date(2015, 8, 28), group:"DTM", className:"touringcar", content:"Nürburgring",id:"[email protected]"},
    {start: new Date(2015, 8, 25), end: new Date(2015, 8, 28), group:"WTCC", className:"touringcar", content:"China",id:"[email protected]"},
    {start: new Date(2015, 8, 25), end: new Date(2015, 8, 28), group:"F1", className:"openwheel", content:"Japan",id:"[email protected]"},
    {start: new Date(2015, 8, 26), end: new Date(2015, 8, 28), group:"BTCC", className:"touringcar", content:"Rounds 25, 26 & 27",id:"[email protected]"},
    {start: new Date(2015, 8, 26), end: new Date(2015, 8, 27), group:"SGP", className:"rally", content:"Stockholm",id:"[email protected]"},
    {start: new Date(2015, 8, 26), end: new Date(2015, 8, 28), group:"WSR", className:"openwheel", content:"France",id:"[email protected]"},
    {start: new Date(2015, 9, 1), end: new Date(2015, 9, 5), group:"WRC", className:"rally", content:"Rallye de France",id:"[email protected]"},
    {start: new Date(2015, 9, 2), end: new Date(2015, 9, 5), group:"SBK", className:"motorcycle", content:"France",id:"[email protected]"},
    {start: new Date(2015, 9, 2), end: new Date(2015, 9, 5), group:"BSB", className:"motorcycle", content:"Round 11",id:"[email protected]"},
    {start: new Date(2015, 9, 2), end: new Date(2015, 9, 5), group:"WorldRX", className:"rally", content:"Turkey",id:"[email protected]"},
    {start: new Date(2015, 9, 3), end: new Date(2015, 9, 4), group:"SGP", className:"rally", content:"Toruń",id:"[email protected]"},
    {start: new Date(2015, 9, 8), end: new Date(2015, 9, 12), group:"V8SC", className:"touringcar", content:"Bathurst 1000",id:"[email protected]"},
    {start: new Date(2015, 9, 9), end: new Date(2015, 9, 12), group:"F1", className:"openwheel", content:"Russia",id:"[email protected]"},
    {start: new Date(2015, 9, 9), end: new Date(2015, 9, 12), group:"MotoGP", className:"motorcycle", content:"Japan",id:"[email protected]"},
    {start: new Date(2015, 9, 10), end: new Date(2015, 9, 12), group:"BTCC", className:"touringcar", content:"Rounds 28, 29 & 30",id:"[email protected]"},
    {start: new Date(2015, 9, 11), end: new Date(2015, 9, 12), group:"WEC", className:"endurance", content:"6 Hours of Fuji",id:"[email protected]"},
    {start: new Date(2015, 9, 16), end: new Date(2015, 9, 19), group:"WorldRX", className:"rally", content:"Italy",id:"[email protected]"},
    {start: new Date(2015, 9, 16), end: new Date(2015, 9, 19), group:"MotoGP", className:"motorcycle", content:"Australia",id:"[email protected]"},
    {start: new Date(2015, 9, 16), end: new Date(2015, 9, 19), group:"DTM", className:"touringcar", content:"Hockenheim",id:"[email protected]"},
    {start: new Date(2015, 9, 16), end: new Date(2015, 9, 19), group:"BSB", className:"motorcycle", content:"Round 12",id:"[email protected]"},
    {start: new Date(2015, 9, 16), end: new Date(2015, 9, 19), group:"SBK", className:"motorcycle", content:"Qatar",id:"[email protected]"},
    {start: new Date(2015, 9, 17), end: new Date(2015, 9, 19), group:"WSR", className:"openwheel", content:"Spain",id:"[email protected]"},
    {start: new Date(2015, 9, 22), end: new Date(2015, 9, 26), group:"WRC", className:"rally", content:"Rally de Espana",id:"[email protected]"},
    {start: new Date(2015, 9, 23), end: new Date(2015, 9, 26), group:"V8SC", className:"touringcar", content:"Gold Coast 600",id:"[email protected]"},
    {start: new Date(2015, 9, 23), end: new Date(2015, 9, 26), group:"MotoGP", className:"motorcycle", content:"Malaysia",id:"[email protected]"},
    {start: new Date(2015, 9, 23), end: new Date(2015, 9, 26), group:"F1", className:"openwheel", content:"United States",id:"[email protected]"},
    {start: new Date(2015, 9, 24), end: new Date(2015, 9, 25), group:"SGP", className:"rally", content:"Melbourne",id:"[email protected]"},
    {start: new Date(2015, 9, 30), end: new Date(2015, 10, 2), group:"F1", className:"openwheel", content:"Mexico",id:"[email protected]"},
    {start: new Date(2015, 9, 30), end: new Date(2015, 10, 2), group:"WTCC", className:"touringcar", content:"Thailand",id:"[email protected]"},
    {start: new Date(2015, 10, 1), end: new Date(2015, 10, 2), group:"WEC", className:"endurance", content:"6 Hours of Shanghai",id:"[email protected]"},
    {start: new Date(2015, 10, 6), end: new Date(2015, 10, 9), group:"MotoGP", className:"motorcycle", content:"Valencia",id:"[email protected]"},
    {start: new Date(2015, 10, 6), end: new Date(2015, 10, 9), group:"V8SC", className:"touringcar", content:"ITM 500 Auckland",id:"[email protected]"},
    {start: new Date(2015, 10, 12), end: new Date(2015, 10, 16), group:"WRC", className:"rally", content:"Wales Rally GB",id:"[email protected]"},
    {start: new Date(2015, 10, 13), end: new Date(2015, 10, 16), group:"F1", className:"openwheel", content:"Brazil",id:"[email protected]"},
    {start: new Date(2015, 10, 19), end: new Date(2015, 10, 23), group:"Roads", className:"motorcycle", content:"Macau Grand Prix",id:"[email protected]"},
    {start: new Date(2015, 10, 20), end: new Date(2015, 10, 23), group:"WTCC", className:"touringcar", content:"Qatar",id:"[email protected]"},
    {start: new Date(2015, 10, 20), end: new Date(2015, 10, 23), group:"V8SC", className:"touringcar", content:"Phillip Island SuperSprint",id:"[email protected]"},
    {start: new Date(2015, 10, 21), end: new Date(2015, 10, 22), group:"WEC", className:"endurance", content:"6 Hours of Bahrain",id:"[email protected]"},
    {start: new Date(2015, 10, 27), end: new Date(2015, 10, 30), group:"WorldRX", className:"rally", content:"Argentina",id:"[email protected]"},
    {start: new Date(2015, 10, 27), end: new Date(2015, 10, 30), group:"F1", className:"openwheel", content:"Abu Dhabi",id:"[email protected]"},
    {start: new Date(2015, 11, 4), end: new Date(2015, 11, 7), group:"V8SC", className:"touringcar", content:"Sydney 500",id:"[email protected]"},
    {start: new Date(2015, 2, 9), end: new Date(2015, 2, 11), group:"GP2", className:"openwheel", content:"Yas Marina Test",id:"[email protected]"},
    {start: new Date(2015, 3, 1), end: new Date(2015, 3, 3), group:"GP2", className:"openwheel", content:"Sakhir Test",id:"[email protected]"},
    {start: new Date(2015, 3, 17), end: new Date(2015, 3, 19), group:"GP2", className:"openwheel", content:"Sakhir, Bahrain",id:"[email protected]"},
    {start: new Date(2015, 4, 8), end: new Date(2015, 4, 10), group:"GP2", className:"openwheel", content:"Barcelona, Spain",id:"[email protected]"},
    {start: new Date(2015, 4, 21), end: new Date(2015, 4, 23), group:"GP2", className:"openwheel", content:"Monte Carlo, Monaco",id:"[email protected]"},
    {start: new Date(2015, 5, 19), end: new Date(2015, 5, 21), group:"GP2", className:"openwheel", content:"Spielber, Austria",id:"[email protected]"},
    {start: new Date(2015, 6, 3), end: new Date(2015, 6, 5), group:"GP2", className:"openwheel", content:"Silverstone, Great-Britain",id:"[email protected]"},
    {start: new Date(2015, 6, 24), end: new Date(2015, 6, 26), group:"GP2", className:"openwheel", content:"Budapest, Hungary",id:"[email protected]"},
    {start: new Date(2015, 7, 21), end: new Date(2015, 7, 23), group:"GP2", className:"openwheel", content:"Spa-Francorchamps, Belgium",id:"[email protected]"},
    {start: new Date(2015, 8, 4), end: new Date(2015, 8, 6), group:"GP2", className:"openwheel", content:"Monza, Italy",id:"[email protected]"},
    {start: new Date(2015, 9, 9), end: new Date(2015, 9, 11), group:"GP2", className:"openwheel", content:"Sochi, Russia",id:"[email protected]"},
    {start: new Date(2015, 10, 27), end: new Date(2015, 10, 29), group:"GP2", className:"openwheel", content:"Yas Marina, UAE",id:"[email protected]"},
  ])

你可能感兴趣的:(charts project)