Working with Kendo Gantt chart to show milestone in the chart. The chart shows it as a task type. The setting for milestone type task is start and end date is same. Please let me know if there is any other setting we need
It was a code issue. The start date and end date were saved the same. However before binding the time for the end date was changed to 23:23:59, and that's why it was not displayed as a milestone. Fixed the date and time to be the same, and the milestone started showing.
Related
I have 2 Kendo UI date pickers on my page to select the start and end date of a date range. On random page loads in these 2 date pickers, one becomes not responding. That is, the calendar is not showing up when clicking on the icon to select a date. This issue mostly happening in chrome.
This issue is resolved. This was due to a code issue where controls are binding 2 times. Corrected the code and binding bring down to 1 time and the issue got resolved. So anybody facing a similar issue please validate this scenario too as a step to resolve.
Thank you very much.
I am developing a gantt chart using Telerik's Kendo UI for JQuery. I am using the Material css theme. If I add a Summary Task with a single Milestone Task within it, the Milestone Task displays as a diamond but the parent Summary Task is a Task of zero length which cannot be seen:
I have seen examples where a smaller diamond is depicted for the Summary Task. I checked the dates for the Summary Task and the Start and End are identical. Am I missing something here please?
I would like to display somehow on a Sonar dashboard the Last Analysis date.
We use SonarQube Version 5.6.3.
EDIT
Can I display the Last Analysis date somehow on the Quality Gate widget?
Was also looking for this question but found the workaround to
use: Advanced Timeline Chart instead of Quality Gate widget. I adapted the height but anyway a lot of white space.
The Last Analysis date is displayed on the top right of any project page you would browse in SonarQube ( see example ).
In my ASP.NET MVC 3 application I have a section to add an event which has a start date and an end date. I am using the jQuery DatePicker for these two input boxes which works fine.
My question is how can I put a time next to these dates? So that in the database the start date will read (for exampls) "28/06/2011 11:24AM". My intitial thought was to put a text box to the side of the date input box in which the user could enter the time, and then the time could be added to the end of the date field. Almost like StartDate = StartDate + Time
Any help would be greatly appreciated
You may find the following extension to the jQuery UI Datepicker useful. And yet another one. And another. And one more.
I am using the Telerik rad chart control to create a bar chart of date-based data. The x-axis shows the date for each data point. The y-axis shows some total.
When there is no data in my datasource for a particular date, the chart is still showing a date, but no bar.
I think this falls under the "empty series approximation" functionality. Is there any way of turning this off? Some property or combination of properties that need to be set?
Thank you.
One way of doing this is using xcategories instead of xvalues in your SeriesMapping. Check the sample:
<TelerikChart:SeriesMapping.ItemMappings>
<telerik:ItemMapping FieldName="Value" DataPointMember="YValue" />
<telerik:ItemMapping FieldName="Date" DataPointMember="XCategory" />
</TelerikChart:SeriesMapping.ItemMappings>
I hope it helps.