Chart Dimensions

28 Jun 20175 minutes to read

You can set the size of the chart directly on the chart or to the container of the chart. When you do not specify the size, it takes 450px as the height and window size as its width, by default.

Set size for the container

You can customize the chart dimension by setting the width and height for the container element.

  • HTML
  • <html xmlns="http://www.w3.org/1999/xhtml" lang="en" ng-app="ChartApp">
        <head>
            <title>Essential Studio for AngularJS: Chart</title>
            <!--CSS and Script file References -->
        </head>
        <body ng-controller="ChartCtrl">
            <div id="container" ej-chart >
            </div>
             <style type="text/css">
            #container {
            width:820px; 
            height:500px;
            }
            </style>
            <script>
                angular.module('ChartApp', ['ejangular'])
               .controller('ChartCtrl', function ($scope) {
                     
                    });
            </script>
        </body>
    </html>

    Set size in pixels

    You can also set the chart dimension by using the e-size property of the chart.

  • HTML
  • <html xmlns="http://www.w3.org/1999/xhtml" lang="en" ng-app="ChartApp">
        <head>
            <title>Essential Studio for AngularJS: Chart</title>
            <!--CSS and Script file References -->
        </head>
        <body ng-controller="ChartCtrl">
            <div id="container" ej-chart e-size-height="450px" e-size-width="600px">
            </div>
            <script>
                     angular.module('ChartApp', ['ejangular'])
                    .controller('ChartCtrl', function ($scope) {
                       
                    });
            </script>
        </body>
    </html>

    Setting size relative to the container size

    You can specify the chart size in percentage by using the e-size property. The chart gets its dimension with respect to its container.

  • HTML
  • <html xmlns="http://www.w3.org/1999/xhtml" lang="en" ng-app="ChartApp">
        <head>
            <title>Essential Studio for AngularJS: Chart</title>
            <!--CSS and Script file References -->
        </head>
        <body ng-controller="ChartCtrl">
            <div id="container" ej-chart e-size-height="80%" e-size-width="90%">
            </div>
            <script>
                    angular.module('ChartApp', ['ejangular'])
                    .controller('ChartCtrl', function ($scope) {
                       
                    });
            </script>
        </body>
    </html>

    Responsive chart

    To resize the Chart when the browser or the chart container is resized, set the e-isresponsive property to true, where the chart adapts to the changes in size of the container.

  • HTML
  • <html xmlns="http://www.w3.org/1999/xhtml" lang="en" ng-app="ChartApp">
        <head>
            <title>Essential Studio for AngularJS: Chart</title>
            <!--CSS and Script file References -->
        </head>
        <body ng-controller="ChartCtrl">
            <div id="container" ej-chart e-isresponsive= true>
            </div>
            <script>
                    angular.module('ChartApp', ['ejangular'])
                    .controller('ChartCtrl', function ($scope) {       
                    });
            </script>
        </body>
    </html>