@astrodraw/astrochart
Version:
A free and open-source JavaScript library for generating SVG charts to display planets in astrology.
27 lines (23 loc) • 807 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>Radix</title>
<style>
body{
background:#999;
}
</style>
</head>
<body>
<div id="paper"></div>
<script src="../../../dist/astrochart.js"></script>
<script type="text/javascript">
window.onload = function () {
var color= "#eee";
var chart = new astrochart.Chart('paper', 2000, 2000, {MARGIN:120, SYMBOL_SCALE:1, STROKE_ONLY:true, LINE_COLOR:color, CIRCLE_STRONG:1, CIRCLE_COLOR:color, DEBUG: true});
chart.calibrate();
};
</script>
</body>
</html>