[Migrated content. Thread originally posted on 05 July 2011]
I am trying to use a active-x control I purchased from CodeJock. The following example is in VB, Can anyone help me convert this to acucobol?Dim Series As ChartSeries
Set Series = ChartControl.Content.Series.Add("Quoted")
Series.Points.Add "Sam", 11
Series.Points.Add "Jesse", 12
Series.Points.Add "Dave", 4.5
Series.Points.Add "Max", 6
Series.Points.Add "Brian", 5
So far I have:
Modify ChartControl Content::Series::Add ("Quoted")
Which the compiler seems to like, but I can't come up with the syntax to add the points, I guess I don't understand what the VB Dim and Set verbs are doing,
Series.Points.Add "Max", 12
Series.Points.Add "Brian", 11
Set Series = ChartControl.Content.Series.Add("Unbillable")
Series.Points.Add "Sam", 7
Series.Points.Add "Jesse", 2
Series.Points.Add "Dave", 5
Series.Points.Add "Max", 1
Series.Points.Add "Brian", 4
Set ChartControl.Content.Series(0).Style = New ChartBarSeriesStyle
