HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
var chart = anychart.gauges.circular([{value: 7.5}]);
3
chart.axis();
4
chart.needle();
5
6
// Get chart credits.
7
// You can't customize credits without a license key. See https://www.anychart.com/buy/ to learn more.
8
var credits = chart.credits();
9
credits.text('Changed credits');
10
11
chart.title('Get and modify credits (works only with a license key)');
12
chart.container('container');
13
chart.draw();
14
});