Вход Регистрация
Файл: Main Website Files/assets/bower_components/flot/examples/series-toggle/index.html
Строк: 85
<?php
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<
html>
<
head>
    <
meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <
title>Flot ExamplesToggling Series</title>
    <
link href="../examples.css" rel="stylesheet" type="text/css">
    <!--[if 
lte IE 8]><script language="javascript" type="text/javascript" src="../../excanvas.min.js"></script><![endif]-->
    <
script language="javascript" type="text/javascript" src="../../jquery.js"></script>
    <
script language="javascript" type="text/javascript" src="../../jquery.flot.js"></script>
    <
script type="text/javascript">

    $(function() {

        var 
datasets = {
            
"usa": {
                
label"USA",
                
data: [[1988483994], [1989479060], [1990457648], [1991401949], [1992424705], [1993402375], [1994377867], [1995357382], [1996337946], [1997336185], [1998328611], [1999329421], [2000342172], [2001344932], [2002387303], [2003440813], [2004480451], [2005504638], [2006528692]]
            },        
            
"russia": {
                
label"Russia",
                
data: [[1988218000], [1989203000], [1990171000], [199242500], [199337600], [199436600], [199521700], [199619200], [199721300], [199813600], [199914000], [200019100], [200121300], [200223600], [200325100], [200426100], [200531100], [200634700]]
            },
            
"uk": {
                
label"UK",
                
data: [[198862982], [198962027], [199060696], [199162348], [199258560], [199356393], [199454579], [199550818], [199650554], [199748276], [199847691], [199947529], [200047778], [200148760], [200250949], [200357452], [200460234], [200560076], [200659213]]
            },
            
"germany": {
                
label"Germany",
                
data: [[198855627], [198955475], [199058464], [199155134], [199252436], [199347139], [199443962], [199543238], [199642395], [199740854], [199840993], [199941822], [200041147], [200140474], [200240604], [200340044], [200438816], [200538060], [200636984]]
            },
            
"denmark": {
                
label"Denmark",
                
data: [[19883813], [19893719], [19903722], [19913789], [19923720], [19933730], [19943636], [19953598], [19963610], [19973655], [19983695], [19993673], [20003553], [20013774], [20023728], [20033618], [20043638], [20053467], [20063770]]
            },
            
"sweden": {
                
label"Sweden",
                
data: [[19886402], [19896474], [19906605], [19916209], [19926035], [19936020], [19946000], [19956018], [19963958], [19975780], [19985954], [19996178], [20006411], [20015993], [20025833], [20035791], [20045450], [20055521], [20065271]]
            },
            
"norway": {
                
label"Norway",
                
data: [[19884382], [19894498], [19904535], [19914398], [19924766], [19934441], [19944670], [19954217], [19964275], [19974203], [19984482], [19994506], [20004358], [20014385], [20025269], [20035066], [20045194], [20054887], [20064891]]
            }
        };

        
// hard-code color indices to prevent them from shifting as
        // countries are turned on/off

        
var 0;
        $.
each(datasets, function(keyval) {
            
val.color i;
            ++
i;
        });

        
// insert checkboxes 
        
var choiceContainer = $("#choices");
        $.
each(datasets, function(keyval) {
            
choiceContainer.append("<br/><input type='checkbox' name='" key +
                
"' checked='checked' id='id" key "'></input>" +
                
"<label for='id" key "'>"
                
val.label "</label>");
        });

        
choiceContainer.find("input").click(plotAccordingToChoices);

        function 
plotAccordingToChoices() {

            var 
data = [];

            
choiceContainer.find("input:checked").each(function () {
                var 
key = $(this).attr("name");
                if (
key && datasets[key]) {
                    
data.push(datasets[key]);
                }
            });

            if (
data.length 0) {
                $.
plot("#placeholder"data, {
                    
yaxis: {
                        
min0
                    
},
                    
xaxis: {
                        
tickDecimals0
                    
}
                });
            }
        }

        
plotAccordingToChoices();

        
// Add the Flot version string to the footer

        
$("#footer").prepend("Flot " + $.plot.version " &ndash; ");
    });

    </
script>
</
head>
<
body>

    <
div id="header">
        <
h2>Toggling Series</h2>
    </
div>

    <
div id="content">

        <
div class="demo-container">
            <
div id="placeholder" class="demo-placeholder" style="float:left; width:675px;"></div>
            <
p id="choices" style="float:right; width:135px;"></p>
        </
div>

        <
p>This example shows military budgets for various countries in constant (2005million US dollars (source: <a href="http://www.sipri.org/">SIPRI</a>).</p>

        <
p>Since all data is available client-sideit's pretty easy to make the plot interactive. Try turning countries on and off with the checkboxes next to the plot.</p>

    </div>

    <div id="footer">
        Copyright &copy; 2007 - 2014 IOLA and Ole Laursen
    </div>

</body>
</html>
?>
Онлайн: 3
Реклама