Javascript library for drawing hindu astrological charts. You can look at demo of charts drawn using astrochartjs at demo page
- astrochartjs uses snapsvg for rendering
svg
. So download snapsvg and includesnap.svg.js
file fromdist
folder in your html. Eg.
<script src="../lib/snapsvg/snap.svg.js"></script>
- Download astrochartjs and include
astrochart.js
fromdist
dir in your html. Eg
<script src="../dist/astrochart.js"></script>
- Add a
svg
element to your html file with unique id. Eg:
<svg id="chart"></svg>
- while working i found that CSS loaded sepratly does not work it give a black screen. So i feel the Best practice would be to addd the style for the svg inside the svg tag.
<svg id="chart" width="600" height="600">
<style type="text/css">
rect.house {
stroke: #FF00FF;
fill: #F3EFE3;
}
rect.chart {
fill: #F3EFE3;
}
text.house {
font-family : Consolas;
font-weight: bold;
font-size: 16px;
fill : #4867D6;
}
text.title {
font-family: Helvetica, Arial, san-serif;
font-weight: 700;
font-size : 16px;
fill : #248F40;
text-anchor: middle;
}
text.retrograde {
fill:#04819E;
}
#Asc {
fill:#FF1E00;
}
#Mo {
fill:#A61300
}
</style>
</svg>
- Create instance of
AstroChart
by passingid
ofsvg
element in html.
var astroChart = new AstroChart("#chart");
- Call draw method with chart data and options to draw chart. Eg:
var options = {
'title': ['Rasi', '11/04/2014 07:00AM', 'Erode, Tamil Nadu, India'],
'width': 600,
'height': 400
};
var astroChart = new AstroChart("#chart");
astroChart.draw({
1: ["Su", "Ke"],
3: ["Ju"],
6: ["Ma", "Asc"],
7: ["Mo", "Sa", "Ra"],
11: ["Ve"],
12: ["Me"]
}, options);
draw()
method parameters
Name | Type | Description |
---|---|---|
data | Object | Map of chart data with house number (1 to 12) as key and array of planets in that house as value. In above example first house contains "Su" and "Ke", second house contains "Ju" etc.. |
options | Object | Map of key/value pair of options |
Supported options
Name | Type | Description |
---|---|---|
width | int | Width of the chart |
height | int | Height of the chart |
styleSheet | url string | Url of custom stylesheet to use |
showHouseNumbers | boolean | Show house number on each house of the chart |
startHouseNumbersFrom | int(1-12) | Starting house number when showHouseNumbers is true. Useful if you want to begin numbering from Ascendant. |