GoogleCloudExtension.StackdriverErrorReporting.TimedCountBarChartControl.CreateTimedCountItems(long)

Here are the examples of the csharp api class GoogleCloudExtension.StackdriverErrorReporting.TimedCountBarChartControl.CreateTimedCountItems(long) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: google-cloud-visualstudio
Source File: TimedCountBarChartControl.cs
private void OnUpdateTimedCountItems()
        {
            if (TimedCountList == null)
            {
                IsEmpty = true;
                return;
            }

            IsEmpty = false;

            long maxCount = TimedCountList == null ? 0 : MaxCountScale(TimedCountList.Max(x => x.Count.GetValueOrDefault()));

            if (_lineItemsControl != null)
            {
                CreateLineItems(maxCount);
            }

            if (_timedCountItemsControl != null)
            {
                CreateTimedCountItems(maxCount);
            }
        }