한국투자증권 주식매매프로그램 만들기

파이썬 주식매매프로그램 만들기

Dojo/Chart

2. Dojo Area Chart & 두 개의 그래프 그리기

토폴로지 2013. 8. 8. 07:43

Area Chart & 개의 그래프 그리기 Code

<html>

<head>

    <title>Chart</title>

         <script src='dojo-release-1.9.1/dojo/dojo.js' ></script>

         <script>

        require([

                                                                         "dojox/charting/Chart",

                                                                         "dojox/charting/plot2d/Lines",

                                                                         "dojox/charting/plot2d/Areas",

                                                                         "dojox/charting/axis2d/Default",

                                                                         "dojo/domReady!"

                         ], function (Chart) {

                                         var chart = new Chart("test");

                                         chart.addPlot("default", {type: "Lines", markers: true, tension:3});

                                         chart.addPlot("someOtherPlot", {type: "Areas"});

                                         chart.addAxis("x");

                                         chart.addAxis("y", {vertical: true});

                                         chart.addSeries("Series 1", [1, 2, 2, 3, 4, 5, 5, 7]);

                                         chart.addSeries("Series 2", [1, 1, 4, 2, 1, 6, 4, 3],

                                                         {plot: "someOtherPlot", stroke: {color:"blue"}, fill: "blue"});

                                         chart.render();

                         });

    </script>

</head>

<body>

    <div id="test" style="width: 250px; height: 150px;"></div>

</body>

</html>

Table 3 Area & 두 개의 그래프 Code

Code 설명

하나의 Chart안에 서로 다른 개의 그래프를 그린 코드이다. 우선 Area 그리기 위해 plot2d/Areas 호출하였다. Line에는 value 표시하는 marker 주었고 tension 3으로 설정하여 부드럽게 표현하였다. 그리고 addSeries()에서 Series 2 경우에는 plot someOtherPlot으로 설정하여 Area module 불러오고 색와 Area 색은 blue 통일하였다

결과 화면


Figure 2 Table 3 결과 화면

 

반응형

'Dojo > Chart' 카테고리의 다른 글

5. Dojo Pie & Animation Chart  (0) 2013.08.08
4. Dojo ClusteredColumns & Animation Chart  (0) 2013.08.08
3. Dojo Column Chart & Chart Theme Setting  (0) 2013.08.08
1. Dojo Line Chart & Chart Instruction  (0) 2013.08.08