Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
VB
@Code
Dim myChart as new Chart(600,400)
 Dim xarr(4)
 xarr(0)="Peter"
 xarr(1)="Andrew"
 xarr(2)="Julie"
 xarr(3)="Mary"
 xarr(4)="Dave"
 Dim yarr(4)
 yarr(0)="2"
 yarr(1)="6"
 yarr(2)="4"
 yarr(3)="5"
 yarr(4)="3"
 myChart.AddTitle("Employees")
myChart.AddSeries("Employees","column",,,,,xarr,,yarr,,)
myChart.Write()
 End Code
Posted
Updated 25-Feb-13 22:35pm
v2
Comments
Shanu2rick 26-Feb-13 4:37am    
what do you mean by insert?
sivamurugan.v 26-Feb-13 4:45am    
HOW TO CHANGE THE CODE FOR ASP.NET ...LIKE <%@.....%>
Shanu2rick 26-Feb-13 4:53am    
you want to use inline code or code behind?
if inline then use it just like you use javascript code
else you have to use .aspx.cs page for it where you can handle all events performed on the page
sivamurugan.v 26-Feb-13 5:00am    
CODE BEHIND CODE....
sivamurugan.v 26-Feb-13 5:02am    
PLEASE THE WAY OF USING INLINE ALSO...

THANKS IN ADVANCE.....

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900