Search found 8 matches
Re: x-axis
Can this problem be solved?
x-axis
In teechart,My data only has two points, so there should only be two time labels on the x-axis. But he automatically generated extra x-axis labels that I don't need, how should I remove them?
- Mon Jun 05, 2023 12:18 am
- Forum: .NET
- Topic: Vertical line
- Replies: 2
- Views: 6021
Re: Vertical line
var cuTool = new Steema.TeeChart.Tools.CursorTool(tChart.Chart) { Style = CursorToolStyles.Vertical, FollowMouse = false, }; cuTool.Pen.Color = Color.Red; cuTool.Pen.Visible = true; DateTime dateTime = DateTime.Now.AddDays(-60); cuTool.XValue = dateTime.ToOADate(); (dateTime.ToOADate())this value c...
- Fri Jun 02, 2023 1:23 am
- Forum: .NET
- Topic: Vertical line
- Replies: 2
- Views: 6021
Vertical line
now I want to create vertical lines ,i used CursorTool . this line is Control line var cuTool =new Steema.TeeChart.Tools.CursorTool(tChart.Chart) { Style = CursorToolStyles.Vertical, FollowMouse = false, }; cuTool.Pen.Color = Color.Red; cuTool.Pen.Visible = true; chart.xaxis is datetime . i want cuT...
- Fri May 12, 2023 2:37 am
- Forum: .NET
- Topic: yvalue datamember binding error
- Replies: 7
- Views: 10655
Re: yvalue datamember binding error
private Line CreateLine(DataTable dstable, DPIDto dto, int i) { Line line = new Line(); line.DataSource = dstable; line.LabelMember = dto.Xvalue; //line.XValues.DataMember = dto.Xvalue; line.Legend.Visible = false; string str = dto.FileNameParament[i].ToString(); line.YValues.DataMember = str; line...
- Thu May 11, 2023 3:06 am
- Forum: .NET
- Topic: yvalue datamember binding error
- Replies: 7
- Views: 10655
Re: yvalue datamember binding error
I uploaded a note
Describes my problem
Can you receive it
Describes my problem
Can you receive it
- Wed May 10, 2023 8:51 am
- Forum: .NET
- Topic: yvalue datamember binding error
- Replies: 7
- Views: 10655
Re: yvalue datamember binding error
Could you please provide me with your email address ? Unable to upload pictures
- Mon May 08, 2023 7:49 am
- Forum: .NET
- Topic: yvalue datamember binding error
- Replies: 7
- Views: 10655
yvalue datamember binding error
Line line = new Line(); line.DataSource = dstable; line.XValues.DataMember = dto.Xvalue; line.Legend.Visible = false; string str = dto.FileNameParament .ToString(); line.YValues.DataMember = str; When I assign value to the Y-axis An error will be reported Indicating string errors but YValues.DataMem...