Timeofday has two uses. It is one of the column types of a `DataTable` of the Google chart tools, and a property of DateTime in .NET 4.6 and 4.5 Use this tag for questions related to `timeofday`.
timeofday is used in Google Charts and .NET
Google Chart
Google Chart is a JavaScript Data presentation API. Internally, it stores data in (mutable) DataTables and/or (immutable) DataViews which is then passed into a chart.
They have different column types, including timeofday, which is initialized with an
Array of three numbers and an optional fourth, representing hour (0 indicates midnight), minute, second, and optional millisecond.
.NET
A DateTime object has the TimeOfDay property which returns a TimeSpan with the current time.
Use this tag for questions about timeofday.