<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ZingSoft Demo</title>
<script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script>
<style></style>
</head>
<body>
<div id='myChart'></div>
<script>
ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
let chartConfig = {
type: 'line',
crosshairX: {
plotLabel: {
multiple: true,
borderRadius: 3,
fontFamily: 'Georgia',
padding: '5 10'
}
},
series: [{
values: [22, 34, 55, 71, 5, 19, 50, 95],
lineColor: '#00BCD4',
marker: {
backgroundColor: '#00BCD4'
},
guideLabel: {
text: 'Alpha: %v',
backgroundColor: '#E0F7FA',
borderColor: '#006064',
fontColor: '#006064',
lineStyle: 'dotted',
},
guideMarker: {
type: 'circle',
size: 10,
mediaRules: [{
maxWidth: 400,
backgroundColor: 'red',
}]
}
},
{
values: [35, 42, 67, 89, 25, 34, 67, 85],
lineColor: '#8BC34A',
marker: {
backgroundColor: '#8BC34A'
},
guideLabel: {
text: 'Beta: %v',
backgroundColor: '#F1F8E9',
borderColor: '#33691E',
fontColor: '#33691E',
lineStyle: 'dashed',
},
guideMarker: {
type: 'triangle',
size: 10,
mediaRules: [{
maxWidth: 400,
backgroundColor: 'green',
}]
}
},
{
values: [50, 21, 45, 75, 60, 59, 37, 64],
lineColor: '#FFC107',
marker: {
backgroundColor: '#FFC107'
},
guideLabel: {
text: 'Gamma: %v',
backgroundColor: '#FFF8E1',
borderColor: '#FF6F00',
fontColor: '#FF6F00',
lineStyle: 'dashdot',
},
guideMarker: {
type: 'star6',
size: 10,
mediaRules: [{
maxWidth: 400,
backgroundColor: 'blue',
}]
}
}
],
plot: {
aspect: 'spline',
tooltip: {
visible: false
},
guideMarker: {
type: 'star6',
size: 10
}
}
};
zingchart.render({
id: 'myChart',
data: chartConfig,
height: 400,
width: '100%'
});
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ZingSoft Demo</title>
<script src="https://cdn.zingchart.com/zingchart.min.js"></script>
</head>
<body>
<div id='myChart'></div>
</body>
</html>
let chartConfig = {
type: 'line',
crosshairX: {
plotLabel: {
multiple: true,
borderRadius: 3,
fontFamily: 'Georgia',
padding: '5 10'
}
},
series: [{
values: [22, 34, 55, 71, 5, 19, 50, 95],
lineColor: '#00BCD4',
marker: {
backgroundColor: '#00BCD4'
},
guideLabel: {
text: 'Alpha: %v',
backgroundColor: '#E0F7FA',
borderColor: '#006064',
fontColor: '#006064',
lineStyle: 'dotted',
},
guideMarker: {
type: 'circle',
size: 10,
mediaRules: [{
maxWidth: 400,
backgroundColor: 'red',
}]
}
},
{
values: [35, 42, 67, 89, 25, 34, 67, 85],
lineColor: '#8BC34A',
marker: {
backgroundColor: '#8BC34A'
},
guideLabel: {
text: 'Beta: %v',
backgroundColor: '#F1F8E9',
borderColor: '#33691E',
fontColor: '#33691E',
lineStyle: 'dashed',
},
guideMarker: {
type: 'triangle',
size: 10,
mediaRules: [{
maxWidth: 400,
backgroundColor: 'green',
}]
}
},
{
values: [50, 21, 45, 75, 60, 59, 37, 64],
lineColor: '#FFC107',
marker: {
backgroundColor: '#FFC107'
},
guideLabel: {
text: 'Gamma: %v',
backgroundColor: '#FFF8E1',
borderColor: '#FF6F00',
fontColor: '#FF6F00',
lineStyle: 'dashdot',
},
guideMarker: {
type: 'star6',
size: 10,
mediaRules: [{
maxWidth: 400,
backgroundColor: 'blue',
}]
}
}
],
plot: {
aspect: 'spline',
tooltip: {
visible: false
},
guideMarker: {
type: 'star6',
size: 10
}
}
};
zingchart.render({
id: 'myChart',
data: chartConfig,
height: 400,
width: '100%'
});