grenade
grenade

Reputation: 32179

Styling the asp.net charting controls

Using the ASP.Net Chart Controls, which are a subset of the Dundas Chart Controls,

How can I make charts that look like this:

alt text

Instead of this:

MS Chart Example

EDIT: I've made some progress, since asking this question. The styling elements that improve the default graph in both Dundas and MSChart are:

Upvotes: 6

Views: 11798

Answers (2)

NeutronJack
NeutronJack

Reputation: 51

I know it's a bit late, but I was playing with the chart for a project I'm working on.

Color="#960080ff"

The first set of two digits in the color are for the alpha channel. I've got it set for 96 which is semi transparent.

enjoy

Upvotes: 5

Pbirkoff
Pbirkoff

Reputation: 4702

Try setting the Area3DStyle.Enable3D property to true.

More info about the 3D style can be found here: http://msdn.microsoft.com/en-us/library/dd489232%28VS.100%29.aspx

Upvotes: 1

Related Questions