Search found 8 matches

by isetUser
Tue Dec 05, 2023 7:16 am
Forum: .NET
Topic: x-axis
Replies: 2
Views: 3440

Re: x-axis

Can this problem be solved?
by isetUser
Mon Dec 04, 2023 7:01 am
Forum: .NET
Topic: x-axis
Replies: 2
Views: 3440

x-axis

466191631926c30655458beed0954ed.png
466191631926c30655458beed0954ed.png (11.31 KiB) Viewed 3440 times
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?
by isetUser
Mon Jun 05, 2023 12:18 am
Forum: .NET
Topic: Vertical line
Replies: 2
Views: 3793

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...
by isetUser
Fri Jun 02, 2023 1:23 am
Forum: .NET
Topic: Vertical line
Replies: 2
Views: 3793

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...
by isetUser
Fri May 12, 2023 2:37 am
Forum: .NET
Topic: yvalue datamember binding error
Replies: 7
Views: 5031

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...
by isetUser
Thu May 11, 2023 3:06 am
Forum: .NET
Topic: yvalue datamember binding error
Replies: 7
Views: 5031

Re: yvalue datamember binding error

I uploaded a note
Describes my problem
Can you receive it
by isetUser
Wed May 10, 2023 8:51 am
Forum: .NET
Topic: yvalue datamember binding error
Replies: 7
Views: 5031

Re: yvalue datamember binding error

Could you please provide me with your email address ? Unable to upload pictures
by isetUser
Mon May 08, 2023 7:49 am
Forum: .NET
Topic: yvalue datamember binding error
Replies: 7
Views: 5031

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...