Files
APP-SIGMA-WEB/graficos.html
2022-02-25 13:15:51 -05:00

60 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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&amp;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>