Anybody have any good links on the Chart Control they introduced in 3.5 SP1? Company wants me to do some charting on a dashboard for a new project. Thanks!
Printable View
Anybody have any good links on the Chart Control they introduced in 3.5 SP1? Company wants me to do some charting on a dashboard for a new project. Thanks!
Check the link in my signature.
Gary
Thanks. Do you know how I force it to label every tick on the X-Axis? I am doing a chart with equipment tags along the bottom and it is only labelling every few of them. I would guess I would have to set the Major Tick interval to 1, but I don't see where to do that.
Off the top of my head, not sure.
Can you show what you are currently doing?
It has been a while since I have played with the Chart Controls.
Gary
Basically I have a chart that shows equipment names on the X Axis and the number of messages sent to each piece of equipment along the Y Axis. Everything charts fine, but the problem is the X Axis is only showing a label for equipment names on the Major Ticks, which is like every 10th tick or so.
SO I need to either figure out how to have major and minor ticks labeled, or how to set the tick interval to one so every tick is a major tick.
Found it:
Chart1.ChartAreas(0).AxisX.Interval = 1
Noice.
Good to know, thanks!