Created
August 27, 2012 16:56
-
-
Save eedeebee/3490348 to your computer and use it in GitHub Desktop.
MarkLogic Visualization Widgets Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function() { | |
| var config = { | |
| searchEndpoint: "search.php", | |
| valueEndpoint: "values.php" | |
| } | |
| ML.controller.init(config); | |
| var options = { | |
| constraint: "decade", | |
| title: "Awards by decade", | |
| subtitle: "1935 – 2011", | |
| dataLabel: "Award count" | |
| }; | |
| ML.chartWidget("#award_container”, "line", options); | |
| ML.controller.getData({}); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="lib/external/jquery-1.7.1.min.js" type="text/javascript"></script> | |
| <script src="lib/external/highcharts.src.js" type="text/javascript"></script> | |
| <script src="lib/controller.js" type="text/javascript"></script> | |
| <script src="lib/widget.js" type="text/javascript"></script> | |
| <script src="/lib/viz/chart/chart.js" type="text/javascript"></script> | |
| <script src="/lib/viz/map/map.js" type="text/javascript"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment