User (Legacy) Posted February 28, 2002 Report Share Posted February 28, 2002 How could I implement the next code in C#: Chart1.DataType(0) = DataType.Label Chart1.DataType(1) = DataType.Value Chart1.DataType(2) = DataType.Value Does anybody has C# samples? Thanks Link to comment Share on other sites More sharing options...
User (Legacy) Posted February 28, 2002 Author Report Share Posted February 28, 2002 How could I implement the next code in C#: Chart1.DataType(0) = DataType.Label Chart1.DataType(1) = DataType.Value Chart1.DataType(2) = DataType.Value Does anybody has C# samples? Thanks Link to comment Share on other sites More sharing options...
Software FX Posted March 1, 2002 Report Share Posted March 1, 2002 Chart1.DataType[0] = DataType.Label; Chart1.DataType[1] = DataType.Value; Chart1.DataType[2] = DataType.Value; -- Regards JC Software FX Support "Felipe Pacheco" <fpacheco@binarsoftware.com> wrote in message news:KJdROtIwBHA.2744@webserver1.softwarefx.com... > How could I implement the next code in C#: > Chart1.DataType(0) = DataType.Label > Chart1.DataType(1) = DataType.Value > Chart1.DataType(2) = DataType.Value > > Does anybody has C# samples? > > Thanks > > Link to comment Share on other sites More sharing options...
Software FX Posted March 1, 2002 Report Share Posted March 1, 2002 Chart1.DataType[0] = DataType.Label; Chart1.DataType[1] = DataType.Value; Chart1.DataType[2] = DataType.Value; -- Regards JC Software FX Support "Felipe Pacheco" <fpacheco@binarsoftware.com> wrote in message news:KJdROtIwBHA.2744@webserver1.softwarefx.com... > How could I implement the next code in C#: > Chart1.DataType(0) = DataType.Label > Chart1.DataType(1) = DataType.Value > Chart1.DataType(2) = DataType.Value > > Does anybody has C# samples? > > Thanks > > Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.