60 lines
1.8 KiB
HTML
60 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>Document</title>
|
||
<style>
|
||
html,
|
||
body,
|
||
#container {
|
||
width: 100%;
|
||
height: 100%;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
</style>
|
||
<script src="https://cdn.anychart.com/releases/8.7.1/js/anychart-core.min.js"></script>
|
||
<script src="https://cdn.anychart.com/releases/8.7.1/js/anychart-cartesian.min.js"></script>
|
||
<script type="text/javascript">
|
||
anychart.onDocumentReady(function () {
|
||
// create a data set
|
||
var data = anychart.data.set([
|
||
["John", 10000],
|
||
["Jake", 12000],
|
||
["Peter", 13000],
|
||
["James", 10000],
|
||
["Mary", 9000],
|
||
]);
|
||
|
||
// create a chart
|
||
var chart = anychart.bar();
|
||
|
||
// create a bar series and set the data
|
||
var series = chart.bar(data);
|
||
|
||
// set the chart title
|
||
chart.title("Bar Chart: Basic Sample");
|
||
|
||
// set the titles of the axes
|
||
chart.xAxis().title("Manager");
|
||
chart.yAxis().title("Sales, $");
|
||
|
||
// set the container id
|
||
chart.container("container");
|
||
|
||
// initiate drawing the chart
|
||
chart.draw();
|
||
});
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<div id="container"></div>
|
||
<a class="qlwapp-toggle" data-action="open" data-phone="59391054931" data-message="Hola, me interesan sus servicios." href="https://web.whatsapp.com/send?phone=593961002767&text=Hola, me interesan sus servicios." target="_blank"> <i class="qlwapp-icon qlwapp-whatsapp-icon"></i>
|
||
<i class="qlwapp-close" data-action="close">×</i>
|
||
<span class="qlwapp-text">¿Necesitas un asesor humano?</span>
|
||
</a>
|
||
|
||
</body>
|
||
</html>
|