Embeddable Acupuncture Chart
Rootdown's embeddable acupuncture charts make it easy to put a detailed acupuncture chart onto any web page.
Example 1. Simple Chart
The code below will produce an acupunture chart containing all recognized points and meridians, showing the default settings.
Note the width and height settings, which can be changed to alter the size of the chart on the screen.
<iframe src="http://www.rootdown.us/Points/PointMap.aspx" frameborder="0" width="500" height="300"></iframe>
show this chart
Example 2. Viewing a Single Meridian
This example will produce an acupuncture chart like the one above, but zoomed in on a specific acupuncture meridian (Urinary Bladder, in this case.)
<iframe src="http://www.rootdown.us/Points/PointMap.aspx?Meridian=UB" frameborder="0" width="500" height="300"></iframe>
show this chart
The desired meridian is selected using its standard two-letter abbreviation. Valid meridians are shown below:
Code |
Meridian |
LU
|
Lung
|
UB
|
Urinary Bladder
|
HT
|
Heart
|
SP
|
Spleen
|
LIV
|
Liver
|
KI
|
Kidney
|
ST
|
Stomach
|
PC
|
Pericardium
|
SJ
|
San Jiao (Triple Burner)
|
LI
|
Large Intestine
|
SI
|
Small Intestine
|
GB
|
Gall Bladder
|
CV
|
Ren Mai (Conception Vessel)
|
GV
|
Du Mai (Governing Vessel)
|
|
The Extra Points
|
AR
|
Auricular
|
Scalp
|
Scalp
|
Example 3. Viewing a Single Point
The code below will display a chart centered and zoomed into a single acupuncture point (Lung 7, in this example).
Note the slightly different syntax from the meridian example above.
The desired point is requested using the meridian abbreviation from the chart above, along with the index of the
point in question.
<iframe src="http://www.rootdown.us/Points/PointMap.aspx?Point=LU-7" frameborder="0" width="500" height="300"></iframe>
show this chart