This the demo of astrochartjs javascript library for drawing hindu astrological charts.
Javascript code to draw simple chart with default options and default style sheet.
var options = {
title: ["Rasi", "14/04/2014 07:00AM", "Erode, Tamil Nadu, India"],
width: 540,
height: 400,
styleSheet: "http://rawgit.com/erajasekar/astrochartjs/master/dist/themes/default.css"
};
var chartData = { 1: ["Su", "Ke"],3: ["Ju"], 6: ["Ma", "Asc"], 7: ["Mo", "Sa", "Ra"], 11: ["Ve"], 12: ["Me"]};
var astroChart = new AstroChart("#chart2");
astroChart.draw(chartData, options);
It generates below chart
Setting showHouseNumbers
property to true
will show house numbers in each house.
This Javascript example code
...
options.showHouseNumbers=true
var astroChart = new AstroChart("#chart2");
astroChart.draw({ 1: ["Su", "Ke"],3: ["Ju"], 6: ["Ma", "Asc"], 7: ["Mo", "Sa", "Ra"], 11: ["Ve"], 12: ["Me"]}, options);
will generate below chart
Setting startHouseNumbersFrom
to between 1 and 12 will begin numbering houses from given value. This is useful
to number houses from Ascendant
. For eg: if Ascendant is Kanya. You can set startHouseNumbersFrom=6
.
This Javascript example code
...
options.startHouseNumbersFrom=6
var astroChart = new AstroChart("#chart2");
astroChart.draw({ 1: ["Su", "Ke"],3: ["Ju"], 6: ["Ma", "Asc"], 7: ["Mo", "Sa", "Ra"], 11: ["Ve"], 12: ["Me"]}, options);
will generate below chart
Just to show that how planets will be aligned with in a house if lot of them are in same house. Let's say we have several planets in first house
...
options.startHouseNumbersFrom=6
var astroChart = new AstroChart("#chart2");
astroChart.draw({1: ["Su", "Ke", "Ju", "Ma", "Asc", "Mo", "Ve", "Me", "Sa"]}, options);
The planets will be aligned in same first house like below
The look and feel of chart can be customized using css and specifying path to css in styleSheet
option like
options.styleSheet = "http://rawgit.com/erajasekar/astrochartjs/master/dist/themes/astrosoft.css"
...
astroChart.draw(chartData, options);
This will make look like Astrosoft below
The look and feel of chart can also be customized inline stylesheet using style
child element of svg
element like
<svg id="chart" width='540' height='400'>
<style type="text/css">
<![CDATA[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>
This will make chart look like below