Wijmo UI for the Web
Quick Start
Wijmo User Guide > Widgets > Chart Widgets > CompositeChart > Quick Start

In this quick start, you'll learn how to add the CompositeChart widget to an HTML project using HTML markup and jQuery script.

  1. To create a new HTML page in your favorite text editor, add the following code and save the document with an .html extension.

    Drop down and copy markup

    Paste in your favorite text editor.
    Copy Code
    <!DOCTYPE HTML>
    <HTML>
    <head>
    </head>
    <body>
    </body>
    </HTML>
    
  2. Add links to the dependencies to your HTML page within the <head> tags. Find the latest dependencies in the content delivery network (CDN) file at wijmo cdn.

    Drop down and copy references to paste inside the head tags

    References
    Copy Code
    <!--Theme-->
    <link href="http://cdn.wijmo.com/themes/aristo/jquery-wijmo.css" rel="stylesheet" type="text/css" />
    
    <!--Wijmo Widgets CSS-->
    <link href="http://cdn.wijmo.com/jquery.wijmo-pro.all.3.20183.140.min.css" rel="stylesheet" type="text/css" />
    
    <!--RequireJs-->
    <script type="text/javascript" src="http://cdn.wijmo.com/external/require.js"></script>
  3. Add the following markup within the <body> tags to create the widget. The <div> element creates the widget, and we call its id attribute in jQuery to initialize it. This markup also sets the height and width of the widget.

    Drop down and copy markup to paste inside the body tags

                
    Markup
    Copy Code
    <div id="wijcompositechart" style="width: 500px; height: 400px">
    </div>
  4. Within the <head> tags, below the references, add the following script to initialize the widget. This script sets several widget options.
    • The X and Y axes are set to show title text.
    • The tooltip (hint) content is set to show data labels.
    • The header displays title text.
    • Chart types, labels, and data, (as well as radius for the pie chart and marker types for the line chart) are added to the seriesList.

    Drop down and copy script to paste inside the head tags

                
    Script
    Copy Code
    <script type="text/javascript">
        requirejs.config({
            baseUrl: "http://cdn.wijmo.com/amd-js/3.20161.90",
                paths: {
                    "jquery": "jquery-1.11.1.min",
                    "jquery-ui": "jquery-ui-1.11.0.custom.min",
                    "jquery.ui": "jquery-ui",
                    "jquery.mousewheel": "jquery.mousewheel.min",
                    "globalize": "globalize.min"
                }
        });
    </script>
    
    <script id="scriptInit" type="text/javascript">
        require(["wijmo.wijcompositechart"], function () {
            $(document).ready(function () {
                $("#wijcompositechart").wijcompositechart({
                    axis: {
                        y: {text: "Total Hardware"},
                        x: {text: ""}
                    },
                    hint: {
                        content: function () {return this.label + '\n ' + this.y + '';}
                    },
                    header: {text: "Hardware Distribution"},
                    seriesList: [{
                        type: "column",
                        label: "West",
                        data: { 
                            x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'], 
                            y: [5, 3, 4, 7, 2] }
                    }, {
                        type: "column",
                        label: "Central",
                        data: { 
                            x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'], 
                            y: [2, 2, 3, 2, 1] }
                    }, {
                        type: "column",
                        label: "East",
                        data: { 
                            x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'], 
                            y: [3, 4, 4, 2, 5] }
                    }, {
                        type: "pie",
                        label: "asdfdsfdsf",
                        center: { x: 150, y: 150 },
                        radius: 60,
                        data: [
                            {label: "MacBook Pro",data: 46.78}, 
                            {label: "iMac", data: 23.18}, 
                            {label: "MacBook", data: 20.25}
                        ]
                    }, {
                        type: "line",
                        label: "Steam1",
                        data: {
                            x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'],
                            y: [3, 6, 2, 9, 5]
                        },
                        markers: {visible: true, type: "circle"}
                    }, {
                        type: "line",
                        label: "Steam2",
                        data: {
                            x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'],
                            y: [1, 3, 4, 7, 2]
                        },
                        markers: {visible: true, type: "tri"}
                    }]
                });
            });
        });
    </script>
  5. Save your HTML file and open it in a browser. The widget appears like the following live widget.
See Also

How To

Reference

Concepts