<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ZingSoft Demo</title>
<script nonce="undefined" src="//www.zingchart.com/scripts/zcDocs.js"></script>
<link href='//www.zingchart.com/css/zcDocs.css' rel='stylesheet' type='text/css'>
<script nonce="undefined" src='//code.jquery.com/jquery-2.1.4.min.js'></script>
<script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script>
<style></style>
</head>
<body>
<div id='demo-chart'></div>
<button class='btn btn-info' id='demo1'>Run Demo 1</button>
<button class='btn btn-info' id='demo2'>Run Demo 2</button>
<pre id='output'></pre>
<script>
ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
var myConfig = {
'type': 'line',
'series': [{
'values': [11, 26, 7, 44, 11]
}],
'labels': [{
'id': 'label1',
'text': 'Label 1',
'x': 50,
'y': 50,
'background-color': '#f90',
'padding': 5
}, {
'id': 'label2',
'text': 'Label 2',
'x': 150,
'y': 50,
'background-color': '#f09',
'padding': 5
}],
'shapes': [{
'id': 'shape1',
'x': 100,
'y': 100,
'type': 'circle',
'size': 15,
'label': {
'text': 'Shape 1'
},
'background-color': '#f09'
},
{
'id': 'shape2',
'x': 150,
'y': 100,
'type': 'star5',
'size': 20,
'label': {
'text': 'Shape 2'
},
'background-color': '#0f9'
}
]
};
zingchart.render({
id: 'demo-chart',
data: myConfig,
height: 400,
width: '100%'
});
demo1.addEventListener('click', function() {
let output = zingchart.exec('demo-chart', 'updateobject', {
'type': 'label',
'data': {
'id': 'label1',
'border-width': 2,
'border-color': '#f00',
'padding': 10,
'text': 'New Text'
}
});
zcdocs.demos.dump('updateobject', output);
});
demo2.addEventListener('click', function() {
let output = zingchart.exec('demo-chart', 'updateobject', {
'type': 'shape',
'data': {
'id': 'shape1',
'border-width': 2,
'border-color': '#f00',
'type': 'star7',
'label': {
'text': 'New Text'
}
}
});
zcdocs.demos.dump('updateobject', output);
});
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ZingSoft Demo</title>
<script src="//www.zingchart.com/scripts/zcDocs.js"></script>
<link href='//www.zingchart.com/css/zcDocs.css' rel='stylesheet' type='text/css'>
<script src='//code.jquery.com/jquery-2.1.4.min.js'></script>
<script src="https://cdn.zingchart.com/zingchart.min.js"></script>
</head>
<body>
<div id='demo-chart'></div>
<button class='btn btn-info' id='demo1'>Run Demo 1</button>
<button class='btn btn-info' id='demo2'>Run Demo 2</button>
<pre id='output'></pre>
</body>
</html>
var myConfig = {
'type': 'line',
'series': [{
'values': [11, 26, 7, 44, 11]
}],
'labels': [{
'id': 'label1',
'text': 'Label 1',
'x': 50,
'y': 50,
'background-color': '#f90',
'padding': 5
}, {
'id': 'label2',
'text': 'Label 2',
'x': 150,
'y': 50,
'background-color': '#f09',
'padding': 5
}],
'shapes': [{
'id': 'shape1',
'x': 100,
'y': 100,
'type': 'circle',
'size': 15,
'label': {
'text': 'Shape 1'
},
'background-color': '#f09'
},
{
'id': 'shape2',
'x': 150,
'y': 100,
'type': 'star5',
'size': 20,
'label': {
'text': 'Shape 2'
},
'background-color': '#0f9'
}
]
};
zingchart.render({
id: 'demo-chart',
data: myConfig,
height: 400,
width: '100%'
});
demo1.addEventListener('click', function() {
let output = zingchart.exec('demo-chart', 'updateobject', {
'type': 'label',
'data': {
'id': 'label1',
'border-width': 2,
'border-color': '#f00',
'padding': 10,
'text': 'New Text'
}
});
zcdocs.demos.dump('updateobject', output);
});
demo2.addEventListener('click', function() {
let output = zingchart.exec('demo-chart', 'updateobject', {
'type': 'shape',
'data': {
'id': 'shape1',
'border-width': 2,
'border-color': '#f00',
'type': 'star7',
'label': {
'text': 'New Text'
}
}
});
zcdocs.demos.dump('updateobject', output);
});