private static FastObservableCollection <CustomGraphLegendItem> GetDefault()
        {
            var buf = new FastObservableCollection <CustomGraphLegendItem>();

            buf.Add(new CustomGraphLegendItem()
            {
                TargetPen = new Pen(Brushes.Blue, 3), Title = "Example1"
            });

            return(buf);
        }
        public SeismicRecordSpectrum()
        {
            AccelerationSpectrum = new FastObservableCollection <Point2D>();
            SpeedSpectrum        = new FastObservableCollection <Point2D>();
            DisplacementSpectrum = new FastObservableCollection <Point2D>();


            DisplacementValuesForTripartiteSpectrum = new FastObservableCollection <Point2D>();

            DisplacementValues = new FastObservableCollection <Point2D>();
            VelocityValues     = new FastObservableCollection <Point2D>();
            AccelerationValues = new FastObservableCollection <Point2D>();

            GroundAccelerationHistory = new List <Point2D>();
            GroundDisplacementHistory = new List <Point2D>();
            GroundVelocityHistory     = new List <Point2D>();
        }
Example #3
0
 /// <summary>
 /// Prevents a default instance of the <see cref="ApplicationSettings"/> class from being created.
 /// </summary>
 private ApplicationSettings()
 {
     ActiveRecords = new FastObservableCollection <SeismicRecordSpectrum>();
 }