i hope add char controls
like :
https://developers.google.com/chart/interactive/docs/gallery/timeline
https://github.com/dreamRs/timelineschart
Hello,
We are setting this item status to 'Declined'.
Currently, RadTimeLine covers the requested functionality. If more specific feature /customization is needed, please open a new support thread with more details on the matter.
Regards,
Petar Mladenov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hello Laio,
Is this the data you want to display in the timeline? Also, did you have the chance to check the suggested controls and see if one of them works for you?
Note that there is no Telerik data viz control that will read the .json automatically. You will need to parse the .json and wrap it in .NET objects that you can pass in the format expected by the API of the corresponding control.
Regards,
Martin Ivanov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
i have 6 Color
public string Color
{
get
{
switch (MachineStatusID)
{
case -3:
return "offlineStatus";
case -1:
return "alarmStatus";
case 0:
return "resetStatus";
case 3:
return "runningStatus";
case 1:
return "stoppingStatus";
case 2:
return "holdingStatus";
default:
return "";
break;
}
}
}
json structure ,see file
{
"MachineStatusID": 3,
"MachineStatusName": "Running",
"Color": "runningStatus",
"StratDate": "2023-01-12T21:42:39.787",
"EndDate": "2023-01-12T21:43:33.037",
"IsValid": false,
"Note": ""
}
Hello Laio,
Telerik provides several WPF controls that bring this type of visualization. Can you try them and let me know if they help?
Regards,
Martin Ivanov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.