|

The Regional Office has plans to increase availability and
visibility of the Index to the widest range of health and
biomedical researchers. It is committed to supporting and
sustaining the Index and to improving its quality, which
will, in turn, contribute to improving the quality of
medical journals from the Region and increase their
visibility.
For more information on how to get indexes, copies of
articles and further information contact:
Knowledge Management & Sharing (KMS)
Regional Office for the Eastern Mediterranean
World Health Organization
Abdul Razzak Al Sanhouri Street
P.O. Box 7608 Nasr City
Cairo 11371
Egypt
Tel.: (202) 670 2535
Fax: (202) 6702492/94
imemr@emro.who.int
<%
Set cd = CreateObject("ChartDirector.API")
' The data for the pie chart
data = Array(25, 18, 15, 12, 8, 30, 35)
' The labels for the pie chart
labels = Array("Labor", "Licenses", "Taxes", "Legal", "Insurance", "Facilities", _
"Production")
' Create a PieChart object of size 450 x 240 pixels
Set c = cd.PieChart(450, 240)
' Set the center of the pie at (150, 100) and the radius to 80 pixels
Call c.setPieSize(150, 100, 80)
' Add a title at the bottom of the chart using Arial Bold Italic font
Call c.addTitle2(cd.Bottom, "Project Cost Breakdown", "arialbi.ttf")
' Draw the pie in 3D
Call c.set3D()
' add a legend box where the top left corner is at (330, 40)
Call c.addLegend(330, 40)
' modify the label format for the sectors to $nnnK (pp.pp%)
Call c.setLabelFormat("{label} ${value}K<*br*>({percent}%)")
' Set the pie data and the pie labels
Call c.setData(data, labels)
' Explode the 1st sector (index = 0)
Call c.setExplode(0)
' output the chart
Response.ContentType = "image/png"
Response.BinaryWrite c.makeChart2(cd.PNG)
Response.End
%>
|
|