In the chart function it does not show the true value. It will show a percentage and it graphs the true value, but will not show it. In the snippet if ran you will see what I mean.
It charts the data values 1,2,3 but will not show them. It does show the percentages up to 100%. Would it be possible in SetData to make values as a choice to show? Then it would show the value rather than a percentage?
JR
Code:
Data["2000"]=1
Data["2001"]=2
Data["2002"]=3
Name=LDChart.AddChart(500,400)
LDChart.Legend(Name,1,"Legend_percent","True")
LDChart.Properties(Name,"Column",1)
LDChart.SetData(Name, Data)
It charts the data values 1,2,3 but will not show them. It does show the percentages up to 100%. Would it be possible in SetData to make values as a choice to show? Then it would show the value rather than a percentage?
JR