I have an ASP Chart like this:
I am not sure how I can make the labels for the values to appear vertical instead of being horizontal. I am not sure if this can be achieved by CSS as the resultant output is an image.

All I have with me is the code which says something like this: Saw some similar question here: C# chart rotate labels, but it is for C# and the given solution has C# code. I am using ASP.NET VBScript and also I am not using any code other than the above mark-up.
Also please advice me how to change the bar colour to a different one.
Is there anything else that I should check?
Define
LabelAngleandColorto the values you want and disableSmartLabelStyleas shown in the markup below:EDIT: use the chart's
PreRenderevent to assign different colors to each data point in your series. The sample below assigns random colors but you could modify it to assign any colors you want.EDIT: Adding full VB code.
WebForm.aspx:
WebForms.aspx.vb: