private async Task <AnomalyEntireDetectResult> GetBatchAnomalyDetectionResultAsync()
        {
            AnomalyDetectionRequest dataRequest = new AnomalyDetectionRequest
            {
                Sensitivity     = (int)sensitivitySlider.Value,
                MaxAnomalyRatio = curScenario.MaxAnomalyRatio,
                Granularity     = curScenario.Granularity.ToString(),
                CustomInterval  = curScenario.CustomInterval,
                Period          = curScenario.Period,
                Series          = curScenario.AllData
            };

            return(await AnomalyDetectorHelper.GetBatchDetectionResult(dataRequest));
        }