Can I have Marks text display something other than X Labels?
Posted: Tue Dec 05, 2006 10:05 pm
Hello,
I'm trying to create my first bar graph with the TeeChart tool. I'm 99% finished, but am having some issues with a couple of oustanding issues. One is, how do I change the text in the Marks at the top of each bar to be something other than a repeat of the X Label values? Ideally, I'd like to make it the value from a third field in the dataset I'm retrieving. I've found a way to disable to marks for now:
With Chart1.Series(0)
.Color = vbGreen
.DataSource = rsGraph
.YValues.ValueSource = "audit_score"
.LabelsSource = "dc_name"
.Marks.Visible = false
End With
I'm trying to create my first bar graph with the TeeChart tool. I'm 99% finished, but am having some issues with a couple of oustanding issues. One is, how do I change the text in the Marks at the top of each bar to be something other than a repeat of the X Label values? Ideally, I'd like to make it the value from a third field in the dataset I'm retrieving. I've found a way to disable to marks for now:
With Chart1.Series(0)
.Color = vbGreen
.DataSource = rsGraph
.YValues.ValueSource = "audit_score"
.LabelsSource = "dc_name"
.Marks.Visible = false
End With