Dear Sandra,
Thank you for your reply.
I tried to install the TeeChart for Xamarin.Android binary for windows without success, File : TeeChartAndroid-4.17.02.21-windows.exe
Regards,
Philippe
Search found 6 matches
- Thu Aug 03, 2017 9:39 am
- Forum: .NET
- Topic: License number not correct to install binary version
- Replies: 3
- Views: 12493
- Tue Aug 01, 2017 2:03 pm
- Forum: .NET
- Topic: License number not correct to install binary version
- Replies: 3
- Views: 12493
License number not correct to install binary version
Dear Sir, I downloaded and installed the full source code for xamarin.android without problems with my credential. After I tried to downloaded and install the binary without success : Wrong License key, please enter a valid one or cancel the installation. Could you please help me to resolve this iss...
- Wed Sep 07, 2016 1:16 pm
- Forum: .NET
- Topic: Binding Gantt
- Replies: 7
- Views: 14456
Re: Binding Gantt
Christopher,
Yes, but the first 'Mark' value is the same of the Label !
No other possibilities to avoid this ?
Thank you
Philippe
Yes, but the first 'Mark' value is the same of the Label !
No other possibilities to avoid this ?
Thank you
Philippe
- Wed Sep 07, 2016 7:43 am
- Forum: .NET
- Topic: Binding Gantt
- Replies: 7
- Views: 14456
Re: Binding Gantt
Dear Christopher, No problem, until the release I resolved in this way : foreach (GanttData data in lstData) { gantt.Add(data.Start, data.End, data.Y, data.Label, data.Color); } Is it possible to have the Marks with different value ? How to do it ? gantt.png Thank you Regards Philippe
- Tue Sep 06, 2016 12:57 pm
- Forum: .NET
- Topic: Binding Gantt
- Replies: 7
- Views: 14456
Re: Binding Gantt
Dear Christopher,
Thank you very much for your reply.
I applied your code but the result is wrong about the date displayed.
Is it possible also to insert mark inside, different of label ?
Thank you
Regards,
Philippe
Thank you very much for your reply.
I applied your code but the result is wrong about the date displayed.
Is it possible also to insert mark inside, different of label ?
Thank you
Regards,
Philippe
- Mon Sep 05, 2016 12:08 pm
- Forum: .NET
- Topic: Binding Gantt
- Replies: 7
- Views: 14456
Binding Gantt
Dear Sir, I want to bind data to a chart gantt in order to have : - Start Date - End Date - Y value - Color - Label I tried this solution without success : public class GanttData { public DateTime Start { get; set; } public DateTime End { get; set; } public int Y { get; set; } public string Label { ...