javascript - Adding multiple lines in Date based AmCharts - Stack Overflow

I've just started working with AmCharts Javascript charting library. My requirement is to draw one

I've just started working with AmCharts Javascript charting library. My requirement is to draw one chart with one value axis and one date axis. And I have data sets showing results for different team members.

Plus I have one array in which the consolidated performance of team members is stored which basically shows panies' performance.

I came across this date based chart in am charts which I want to use for my application. The problem is, I want to add multiple lines in this chart which I don't know how to add. I tried doing it with given sample code, but there is no way of feeding more than one array of data.

I also tried creating separate graphs using new AmCharts.AmGraph() Method but amCharts asks for data provider on chart level. Not on graph level.

Please help

I've just started working with AmCharts Javascript charting library. My requirement is to draw one chart with one value axis and one date axis. And I have data sets showing results for different team members.

Plus I have one array in which the consolidated performance of team members is stored which basically shows panies' performance.

I came across this date based chart in am charts which I want to use for my application. The problem is, I want to add multiple lines in this chart which I don't know how to add. I tried doing it with given sample code, but there is no way of feeding more than one array of data.

I also tried creating separate graphs using new AmCharts.AmGraph() Method but amCharts asks for data provider on chart level. Not on graph level.

Please help

Share Improve this question asked Oct 15, 2014 at 20:18 SourabhSourabh 1,7656 gold badges21 silver badges43 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

Just add in your second graph into the "graphs" section...

    {
        "id": "g2",
        "bullet": "round",
        "bulletBorderAlpha": 1,
        "bulletColor": "#00FF00",
        "bulletSize": 5,
        "hideBulletsCount": 50,
        "lineThickness": 2,
        "title": "green line",
        "useLineColorForBulletBorder": true,
        "valueField": "value2"
    }

and also add the second stream into your data...

    {
        "date": "2012-07-27",
        "value": 13,
        "value2": 10
    }, {
        "date": "2012-07-28",
        "value": 11,
        "value2": 12
    }

As you can see, I have added the "value2" which will be used as the example data for a second graph. Just make sure that you refer to this value in the graph section (as you will see in the "valueField" in the top section of code above.

You can see a working example at http://jsfiddle/srp8313j/. I only added a few points for the second graph just so you can get a taster of what is needed to be done.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743700471a4492481.html

相关推荐

  • javascript - Adding multiple lines in Date based AmCharts - Stack Overflow

    I've just started working with AmCharts Javascript charting library. My requirement is to draw one

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信