├── .gitattributes ├── .gitignore ├── Examples ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ ├── NuGet.exe.props │ └── NuGet.targets ├── README.md ├── SciChart.Examples.Demo.SmokeTests │ ├── AutomationTestBase.cs │ ├── Resources │ │ ├── Charts2D │ │ │ ├── ChartAnnotations │ │ │ │ ├── AnnotationsAreEasy.png │ │ │ │ ├── CompositeAnnotations.png │ │ │ │ ├── CreateAnnotationsDynamically.png │ │ │ │ ├── DatapointMarkers.png │ │ │ │ ├── DragHorizontalThreshold.png │ │ │ │ ├── InteractionWithAnnotations.png │ │ │ │ ├── PolarChartAnnotations.png │ │ │ │ ├── TradeAnnotations.png │ │ │ │ └── TradeMarkers.png │ │ │ ├── CreateGaugeChart │ │ │ │ ├── UsingDonutChart.png │ │ │ │ └── UsingPieChart.png │ │ │ ├── CreateSimpleChart │ │ │ │ ├── BandSeriesChart.png │ │ │ │ ├── BoxPlot.png │ │ │ │ ├── BubbleChart.png │ │ │ │ ├── CandlestickChart.png │ │ │ │ ├── ColumnChart.png │ │ │ │ ├── DigitalBandSeriesChart.png │ │ │ │ ├── DigitalLineChart.png │ │ │ │ ├── DigitalMountainChart.png │ │ │ │ ├── ImpulseStemChart.png │ │ │ │ ├── LineChart.png │ │ │ │ ├── MountainChart.png │ │ │ │ ├── PolarChart.png │ │ │ │ └── ScatterChart.png │ │ │ ├── CustomCharts │ │ │ │ └── SplineScatterChart.png │ │ │ ├── ExportCharts │ │ │ │ └── ExportChart.png │ │ │ ├── Filters │ │ │ │ └── FiltersApiExample.png │ │ │ ├── Heatmaps │ │ │ │ ├── HeatmapAndPaletteProvider.png │ │ │ │ ├── HeatmapMetaData.png │ │ │ │ ├── HeatmapRealTime.png │ │ │ │ ├── HeatmapWithText.png │ │ │ │ └── NonUniformHeatmap.png │ │ │ ├── Legends │ │ │ │ └── LegendsAPI.png │ │ │ ├── MVVMExamples │ │ │ │ ├── AxisAnnotationBinding.png │ │ │ │ ├── BindMultipleCharts.png │ │ │ │ ├── BindSciChartToData.png │ │ │ │ ├── ManipulateSeriesMvvm.png │ │ │ │ ├── SeriesBinding.png │ │ │ │ └── SyncCharts.png │ │ │ ├── ManipulateSeries │ │ │ │ ├── AddRemoveSeries.png │ │ │ │ ├── ChangeRenderableSeriesType.png │ │ │ │ └── ChangeSeriesType.png │ │ │ ├── ModifyAxisBehavior │ │ │ │ ├── CategoryVsValueAxis.png │ │ │ │ ├── CentralXYAxes.png │ │ │ │ ├── LogarithmicAxis.png │ │ │ │ ├── ModifyAxisProperties.png │ │ │ │ ├── MultipleXAxis.png │ │ │ │ ├── MultipleYAxis.png │ │ │ │ ├── PolarChartManyAxes.png │ │ │ │ ├── SecondaryYAxis.png │ │ │ │ ├── SwitchAxisTypeRuntime.png │ │ │ │ ├── VerticalCharts.png │ │ │ │ └── VerticallyStackedYAxis.png │ │ │ ├── MultiseriesCharts │ │ │ │ ├── CandlestickAndLines.png │ │ │ │ ├── ContoursWithHeatmap.png │ │ │ │ ├── DashboardPolarCharts.png │ │ │ │ ├── DashboardStyleCharts.png │ │ │ │ ├── ErrorBars.png │ │ │ │ ├── FanChart.png │ │ │ │ ├── GanttChart.png │ │ │ │ ├── GapsInSeries.png │ │ │ │ ├── LineAndScatterChart.png │ │ │ │ ├── StackedBarChart.png │ │ │ │ ├── StackedColumnChart.png │ │ │ │ ├── StackedColumnSideBySide.png │ │ │ │ └── StackedMountainChart.png │ │ │ ├── RadarCharts │ │ │ │ ├── RadarChart.png │ │ │ │ └── RadarChartCustomization.png │ │ │ ├── StockCharts │ │ │ │ ├── MultiPaneStockChart.png │ │ │ │ ├── RealtimeTickingCharts.png │ │ │ │ └── UsingSciStockChart.png │ │ │ ├── StylingTheming │ │ │ │ ├── CustomTheme.png │ │ │ │ ├── DashedLineStyling.png │ │ │ │ ├── UseHQRendering.png │ │ │ │ ├── UsingPaletteProvider.png │ │ │ │ ├── UsingPointMarkers.png │ │ │ │ ├── UsingThemeManager.png │ │ │ │ └── Xaml Styling.png │ │ │ ├── SyncCharts │ │ │ │ └── SyncCharts.png │ │ │ ├── TernaryCharts │ │ │ │ ├── ErrorBarTernaryChart.png │ │ │ │ ├── PolygonTernaryChart.png │ │ │ │ └── ScatterTernaryChart.png │ │ │ ├── TooltipsAndHitTests │ │ │ │ ├── CustomPointMarker.png │ │ │ │ ├── HitTestAPI.png │ │ │ │ ├── PointMarkersSelection.png │ │ │ │ ├── SeriesSelection.png │ │ │ │ ├── SeriesWithMetadata.png │ │ │ │ ├── TooltipsAndModifiers.png │ │ │ │ ├── Using TooltipModifier.png │ │ │ │ ├── UsingCursorModifier.png │ │ │ │ ├── UsingRolloverModifier.png │ │ │ │ └── UsingVerticalSlice.png │ │ │ ├── ZoomHistory │ │ │ │ ├── UndoRedo.png │ │ │ │ └── ZoomHistoryMVVM.png │ │ │ └── ZoomPan │ │ │ │ ├── CustomOverviewControl.png │ │ │ │ ├── DragAreaToZoom.png │ │ │ │ ├── DragAxisToScale.png │ │ │ │ ├── MousewheelZoomScroll.png │ │ │ │ ├── OverviewControl.png │ │ │ │ ├── PanOnMouseDrag.png │ │ │ │ ├── PanYXDirection.png │ │ │ │ └── PerAxisScrollbars.png │ │ ├── Charts3D │ │ │ ├── BasicChartTypes │ │ │ │ ├── ClosedSurfaceMesh3D.png │ │ │ │ ├── SimpleBubble3DChart.png │ │ │ │ ├── SimpleCylindroid3DChart.png │ │ │ │ ├── SimpleEllipsoid3DChart.png │ │ │ │ ├── SimplePointCloud3DChart.png │ │ │ │ ├── SimplePolar3DChart.png │ │ │ │ ├── SimpleScatter3DChart.png │ │ │ │ ├── SimpleUniformMeshCloud3DChart.png │ │ │ │ ├── SimpleWaterfall3DChart.png │ │ │ │ ├── UniformColumn3DChart.png │ │ │ │ └── UniformOrthogonalHeatmap3DChart.png │ │ │ ├── Customize │ │ │ │ ├── AddGeometryto3DChart.png │ │ │ │ └── AddObjectto3DChart.png │ │ │ ├── ModifyAxis │ │ │ │ ├── AxisBinding.png │ │ │ │ └── LogarihtmicAxis3D.png │ │ │ ├── StyleChart │ │ │ │ └── SimpleThemManager3DChart.png │ │ │ └── SurfaceMesh │ │ │ │ ├── FloorCeilingSurfaceMesh.png │ │ │ │ ├── NonUniformSurfaceMesh.png │ │ │ │ └── WithContoursSurfaceMesh.png │ │ └── FeaturedApps │ │ │ ├── FinancialCharts │ │ │ ├── AggregationFilters.png │ │ │ └── SciChartTraderDemo.png │ │ │ ├── MedicalCharts │ │ │ ├── ECGMonitorDemo.png │ │ │ └── VitalSignsMonitorDemo.png │ │ │ ├── ParallelCoordinatePlot │ │ │ └── ParallelCoordinatePlot.png │ │ │ ├── PerformanceDemos │ │ │ ├── FastPalettedScatterCharts.png │ │ │ ├── Fifo1BillionPoints.png │ │ │ └── ScatterChartPerformanceDemo.png │ │ │ └── ScientificCharts │ │ │ └── LIDARPointCloud3DDemo.png │ ├── SciChart.Examples.Demo.SmokeTests.csproj │ ├── SmokeTests_ExampleWalkUsingBreadcrumbView.cs │ ├── SmokeTests_NewAppPerTest.cs │ └── WriteableBitmapExtensions.cs ├── SciChart.Examples.Demo │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Behaviors │ │ ├── AutocompleteHelper.cs │ │ ├── AutocompleteSearchBehaviour.cs │ │ ├── CloseWindowBehavior.cs │ │ ├── ExampleAutocompleteBehavior.cs │ │ ├── InitializationBehaviour.cs │ │ ├── ListBoxScrollToTopBehavior.cs │ │ ├── PopulateExamplesBehaviour.cs │ │ ├── ProgressBarAnimateValueBehavior.cs │ │ ├── ScrollViewerExtensions.cs │ │ ├── SharedResourceDictionary.cs │ │ └── TilesHarmonistBehavior.cs │ ├── Bootstrapper.cs │ ├── CodeHighlighter │ │ ├── CodeColorizer.cs │ │ ├── Common │ │ │ ├── ExtensionMethods.cs │ │ │ ├── Guard.cs │ │ │ ├── ILanguageRepository.cs │ │ │ ├── LanguageId.cs │ │ │ ├── LanguageRepository.cs │ │ │ └── ScopeName.cs │ │ ├── Compilation │ │ │ ├── CompiledLanguage.cs │ │ │ ├── ILanguageCompiler.cs │ │ │ ├── LanguageCompiler.cs │ │ │ └── Languages │ │ │ │ ├── CSharp.cs │ │ │ │ ├── Cpp.cs │ │ │ │ ├── JavaScript.cs │ │ │ │ ├── VbDotNet.cs │ │ │ │ └── Xml.cs │ │ ├── Formatters.cs │ │ ├── Formatting │ │ │ └── XamlInlineFormatter.cs │ │ ├── ICodeColorizer.cs │ │ ├── IFormatter.cs │ │ ├── ILanguage.cs │ │ ├── IStyleSheet.cs │ │ ├── LanguageRule.cs │ │ ├── Languages.cs │ │ ├── Parsing │ │ │ ├── ILanguageParser.cs │ │ │ ├── LanguageParser.cs │ │ │ └── Scope.cs │ │ ├── SourceLanguageType.cs │ │ ├── Style.cs │ │ ├── StyleDictionary.cs │ │ ├── StyleSheets.cs │ │ └── Styling │ │ │ ├── DarkStyleSheet.cs │ │ │ ├── DefaultStyleSheet.cs │ │ │ └── NavyStyleSheet.cs │ ├── Common │ │ ├── AutoCompleteBoxCompatible.cs │ │ ├── Converters │ │ │ ├── BusyToBlurEffectConverter.cs │ │ │ ├── EnumDescriptionConverter.cs │ │ │ ├── ExampleConverter.cs │ │ │ ├── ExampleDescriptionFormattingConverter.cs │ │ │ ├── ExampleFeaturesFormattingConverter.cs │ │ │ ├── ExampleSourceCodeFormattingConverter.cs │ │ │ ├── GroupToChapterConverter.cs │ │ │ ├── InverseBooleanConverter.cs │ │ │ ├── IsEmptyStringConverter.cs │ │ │ ├── IsGroupConverter.cs │ │ │ ├── RendererSettingConverter.cs │ │ │ ├── RendererTypeToDisplayNameConverter.cs │ │ │ ├── StringToLanguageTypeConverter.cs │ │ │ ├── StringToOpacityConverter.cs │ │ │ ├── TextFormattingConverterBase.cs │ │ │ ├── ThicknessToNegativeThicknessConverter.cs │ │ │ ├── TimeSpanToMillisecondsConverter.cs │ │ │ ├── UsageToRatingConverter.cs │ │ │ └── UsageToVisitedCountConverter.cs │ │ ├── DispatcherScheduler.cs │ │ ├── ExampleUsage.cs │ │ ├── PausableDispatcherTimer.cs │ │ └── WrapPanelCompatible.cs │ ├── Controls │ │ ├── AnimatedImage.cs │ │ ├── Breadcrumb │ │ │ └── Breadcrumb.cs │ │ ├── ContentSizeLimiter.cs │ │ ├── CustomListBox.cs │ │ ├── CustomListBoxItem.cs │ │ ├── EndlessItemsControl │ │ │ ├── EndlessItemsControl.cs │ │ │ └── PropertyChangeNotifier.cs │ │ ├── HyperlinkButtonCompatible.cs │ │ ├── ItemsControlWithUIAutomation.cs │ │ ├── NavigationTabControl.cs │ │ ├── ShowcaseControl.cs │ │ ├── Tile │ │ │ ├── Tile.cs │ │ │ └── TileState.cs │ │ └── WatermarkedAutocomplete │ │ │ └── WatermarkedAutocomplete.cs │ ├── Helpers │ │ ├── AppConstants.cs │ │ ├── ApplicationPage.cs │ │ ├── BindingProxy.cs │ │ ├── Clip.cs │ │ ├── CodeHighlighter.cs │ │ ├── EverythingTemplateSelector.cs │ │ ├── Example.cs │ │ ├── GenericAutomationPeer.cs │ │ ├── Grouping │ │ │ ├── GroupingByCategory.cs │ │ │ ├── GroupingByDateReleased.cs │ │ │ ├── GroupingByFeature.cs │ │ │ ├── GroupingByMostUsed.cs │ │ │ ├── GroupingByName.cs │ │ │ ├── GroupingMode.cs │ │ │ └── IGrouping.cs │ │ ├── HtmlExport │ │ │ ├── ExportedExampleIndex.html │ │ │ ├── ExportedExampleTemplate.html │ │ │ └── HtmlExportHelper.cs │ │ ├── ISelectable.cs │ │ ├── InvokeSelectCommandAction.cs │ │ ├── LinqExtension.cs │ │ ├── Module.cs │ │ ├── Navigation │ │ │ ├── ExamplesFrame.cs │ │ │ ├── FrameBase.cs │ │ │ ├── MainFrame.cs │ │ │ └── Navigator.cs │ │ ├── ProjectExport │ │ │ ├── DirectoryHelper.cs │ │ │ ├── ProjectWriter.cs │ │ │ └── Templates │ │ │ │ ├── App.xaml.c.txt │ │ │ │ ├── App.xaml.txt │ │ │ │ ├── MainWindow.xaml.c.txt │ │ │ │ ├── MainWindow.xaml.txt │ │ │ │ ├── ProjectFile.csproj.txt │ │ │ │ └── SolutionFile.sln.txt │ │ ├── RichTextBoxExtension.cs │ │ ├── RichTextBoxHelper.cs │ │ ├── SerializationUtil.cs │ │ ├── TransitioningFrame.cs │ │ └── UsageTracking │ │ │ ├── ISyncUsageHelper.cs │ │ │ ├── SyncUsageHelper.cs │ │ │ ├── UsageCalculator.cs │ │ │ ├── UsageClientConfiguration.cs │ │ │ └── UsageServiceClient.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowViewModel.cs │ ├── NullLogger.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── Fonts │ │ │ ├── Marlett.ttf │ │ │ └── NEUROPOL.ttf │ │ ├── Styles │ │ │ ├── AnimatedImage.xaml │ │ │ ├── Breadcrumb.xaml │ │ │ ├── Buttons.xaml │ │ │ ├── Controls.xaml │ │ │ ├── EndlessItemsControl.xaml │ │ │ ├── Hyperlink.xaml │ │ │ ├── Icons.xaml │ │ │ ├── ListBox.xaml │ │ │ ├── NavigationTabControl.xaml │ │ │ ├── OpacityMask.xaml │ │ │ ├── Scrollbars.xaml │ │ │ ├── ShowcaseControl.xaml │ │ │ ├── TextBlock.xaml │ │ │ ├── Tile.xaml │ │ │ ├── TransitioningFrame.xaml │ │ │ └── WatermarkedAutocomplete.xaml │ │ ├── codeStopwords.dat │ │ └── stopwords.dat │ ├── SciChart.Examples.Demo.csproj │ ├── SciChartIconWin256x256.ico │ ├── Search │ │ ├── CreateInvertedIndex.cs │ │ ├── ExampleSearchProvider.cs │ │ ├── NGramTokenizer.cs │ │ ├── PorterStemmer.cs │ │ ├── Posting.cs │ │ └── TermInfo.cs │ ├── ShellControl.xaml │ ├── ShellControl.xaml.cs │ ├── Splash.xaml │ ├── Splash.xaml.cs │ ├── Themes │ │ ├── Dark.xaml │ │ └── Navy.xaml │ ├── ViewModels │ │ ├── AllowFeedbackSettingBehaviour.cs │ │ ├── BreadCrumbViewModel.cs │ │ ├── BreadcrumbItemViewModel.cs │ │ ├── EverythingGroupViewModel.cs │ │ ├── EverythingViewModel.cs │ │ ├── ExampleGroupViewModel.cs │ │ ├── ExampleViewModel.cs │ │ ├── ExportExampleHelper.cs │ │ ├── ExportExampleViewModel.cs │ │ ├── FeedbackViewModel.cs │ │ ├── MostPopularExampleViewModel.cs │ │ ├── SearchExampleViewModel.cs │ │ ├── SettingsViewModel.cs │ │ └── TileViewModel.cs │ ├── Views │ │ ├── ComboBoxItemTemplateSelector.cs │ │ ├── CoverFlowControlItemTemplateSelector.cs │ │ ├── EverythingView.xaml │ │ ├── EverythingView.xaml.cs │ │ ├── ExampleNavigationView.xaml │ │ ├── ExampleNavigationView.xaml.cs │ │ ├── ExampleView.xaml │ │ ├── ExampleView.xaml.cs │ │ ├── ExportExampleView.xaml │ │ ├── ExportExampleView.xaml.cs │ │ ├── FeedbackView.xaml │ │ ├── FeedbackView.xaml.cs │ │ ├── HomeView.xaml │ │ ├── HomeView.xaml.cs │ │ ├── SearchView.xaml │ │ ├── SearchView.xaml.cs │ │ ├── SettingsView.xaml │ │ ├── SettingsView.xaml.cs │ │ ├── SourceCodeView.xaml │ │ ├── SourceCodeView.xaml.cs │ │ ├── SourceTipsView.xaml │ │ ├── SourceTipsView.xaml.cs │ │ ├── TipsView.xaml │ │ └── TipsView.xaml.cs │ ├── app.manifest │ ├── sharpdx_direct3d11_1_effects_x64.dll │ └── sharpdx_direct3d11_1_effects_x86.dll ├── SciChart.Examples.ExternalDependencies │ ├── Behaviors │ │ ├── ContentPresenterHelper.cs │ │ ├── EventToCommandBehavior.cs │ │ ├── HyperlinkButtonBehavior.cs │ │ └── PopupPlacementBehavior.cs │ ├── Common │ │ ├── BaseViewModel.cs │ │ ├── BoolToValueConverter.cs │ │ ├── CollapsableGridSplitter.cs │ │ ├── DeveloperModManager.cs │ │ ├── DoubleToGridLengthConverter.cs │ │ ├── Enums.cs │ │ ├── ExampleHelpers.cs │ │ ├── FeaturesHelper.cs │ │ ├── FlyoutMenuButton.cs │ │ ├── FlyoutMenuToggleButton.cs │ │ ├── FlyoutMenuToggleButtonExtensions.cs │ │ ├── FrameworkVisibilityManager.cs │ │ ├── GetTypeNameConverter.cs │ │ ├── IPowerManager.cs │ │ ├── Instrument.cs │ │ ├── IsChartTypeConverter.cs │ │ ├── IsModifierTypeConverter.cs │ │ ├── IsSameObjectsMultiConverter.cs │ │ ├── LinearToLogarithmicValueConverter.cs │ │ ├── NewsEvent.cs │ │ ├── PowerManager.cs │ │ ├── PowerPlan.cs │ │ ├── SciChartPolarInteractionToolbar.cs │ │ ├── ScrollViewerWidthMultiConverter.cs │ │ ├── SeriesStrokeProvider.cs │ │ ├── SnapToSeriesVisibilityConverter.cs │ │ ├── SnappingModeToVisibilityConverter.cs │ │ ├── StringNullEmptyToVisibilityConverter.cs │ │ ├── StrongTyped.cs │ │ ├── TextElementEx.cs │ │ ├── TimeFrame.cs │ │ ├── ToValidDateTimeConverter.cs │ │ ├── ToolbarIcon.cs │ │ ├── Trade.cs │ │ ├── TypeToTypeNameConverter.cs │ │ ├── ValidateDateFormatStringConverter.cs │ │ └── VisibleIfTypeConverter.cs │ ├── Controls │ │ ├── CoverFlow │ │ │ ├── CoverFlowControl.cs │ │ │ ├── CoverFlowEventArgs.cs │ │ │ ├── CoverFlowItemControl.cs │ │ │ └── PlaneProjector.cs │ │ ├── ExceptionView │ │ │ ├── ExceptionView.xaml │ │ │ └── ExceptionView.xaml.cs │ │ ├── Toolbar2D │ │ │ ├── ComboBoxItemTemplateSelector.cs │ │ │ ├── Converters │ │ │ │ ├── EnumValueToStringConverter.cs │ │ │ │ └── StringToAnnotationTypeConverter.cs │ │ │ ├── CustomModifiers │ │ │ │ ├── CustomAnnotationCreationModifier.cs │ │ │ │ ├── CustomExportModifier.cs │ │ │ │ ├── CustomFlipModifier.cs │ │ │ │ ├── CustomRotateChartModifier.cs │ │ │ │ ├── CustomThemeChangeModifier.cs │ │ │ │ └── SeriesAnimationCustomModifier.cs │ │ │ ├── Extension │ │ │ │ └── EnumValuesExtension.cs │ │ │ ├── InvokeCommandActionEx.cs │ │ │ ├── ModifierButtonTemplateSelector.cs │ │ │ ├── MyCustomAnnotation.xaml │ │ │ ├── MyCustomAnnotation.xaml.cs │ │ │ └── SciChartInteractionToolbar.cs │ │ └── Toolbar3D │ │ │ ├── CustomModifiers │ │ │ ├── AxisLabelsOrientationModifier.cs │ │ │ ├── AxisPlaneDrawLabelsModifier.cs │ │ │ ├── AxisPlaneDrawTitlesModifier.cs │ │ │ ├── AxisTitleOrientationModifier.cs │ │ │ ├── CameraModeModifier.cs │ │ │ └── CoordinateSystemModifier.cs │ │ │ ├── SciChart3DInteractionToolbar.cs │ │ │ └── SciChart3DModifierButtonTemplateSelector.cs │ ├── Data │ │ ├── AscReader.cs │ │ ├── DataManager.cs │ │ ├── DispatcherObservableCollection.cs │ │ ├── DoubleSeries.cs │ │ ├── FFT.cs │ │ ├── IDataManager.cs │ │ ├── MarketDataService.cs │ │ ├── MovingAverage.cs │ │ ├── PopulationData.cs │ │ ├── PriceBar.cs │ │ ├── PriceSeries.cs │ │ ├── RandomPricesDataSource.cs │ │ ├── RandomWalkGenerator.cs │ │ ├── Tick.cs │ │ ├── TradeData.cs │ │ ├── VitalSignsData.cs │ │ ├── WeatherData.cs │ │ └── XYPoint.cs │ ├── Helpers │ │ ├── ActualSizePropertyProxy.cs │ │ └── TextBoxHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Data │ │ │ ├── AcousticPlots.csv.gz │ │ │ ├── EURUSD_Daily.csv.gz │ │ │ ├── EURUSD_Hourly.csv.gz │ │ │ ├── EURUSD_Minute5.csv.gz │ │ │ ├── INDU_Daily.csv.gz │ │ │ ├── LIDARtq3080DSM2M.asc.gz │ │ │ ├── PopulationData.csv.gz │ │ │ ├── TickData.csv.gz │ │ │ ├── TradeTicks.csv.gz │ │ │ ├── VitalSignsTrace.csv.gz │ │ │ ├── Waveform.txt.gz │ │ │ └── WeatherData.txt.gz │ │ ├── Images │ │ │ ├── SciChartLogo_Dark.png │ │ │ ├── SciChartLogo_Navy.png │ │ │ └── globe_heightmap.png │ │ ├── Objects │ │ │ ├── Bishop_Low.obj │ │ │ ├── BlackWoodTexture.jpg │ │ │ ├── King_Low.obj │ │ │ ├── Knight_Low.obj │ │ │ ├── Pawn_Low.obj │ │ │ ├── Queen_Low.obj │ │ │ ├── Rook_Low.obj │ │ │ └── WhiteWoodTexture.jpg │ │ └── Styles │ │ │ ├── Annotations.xaml │ │ │ ├── Button.xaml │ │ │ ├── Calendar.xaml │ │ │ ├── CheckBox.xaml │ │ │ ├── ComboBox.xaml │ │ │ ├── Controls.xaml │ │ │ ├── CoverFlow.xaml │ │ │ ├── DatePicker.xaml │ │ │ ├── Effects.xaml │ │ │ ├── RadioButton.xaml │ │ │ ├── Slider.xaml │ │ │ ├── TextBox.xaml │ │ │ ├── ToggleButton.xaml │ │ │ ├── Toolbar.xaml │ │ │ └── ToolbarButtons.xaml │ ├── SciChart - Backup.Examples.ExternalDependencies.csproj │ ├── SciChart.Examples.ExternalDependencies.csproj │ └── Themes │ │ ├── Dark.xaml │ │ ├── Navy.xaml │ │ └── generic.xaml ├── SciChart.Examples │ ├── ChartTypes.cs │ ├── ExampleDefinition.cs │ ├── ExampleLoader.cs │ ├── ExampleManager.cs │ ├── Examples │ │ ├── AnnotateAChart │ │ │ ├── AnnotationsAreEasy.xaml │ │ │ ├── AnnotationsAreEasy.xaml.cs │ │ │ ├── CompositeAnnotations │ │ │ │ ├── CompositeAnnotationsView.xaml │ │ │ │ ├── CompositeAnnotationsView.xaml.cs │ │ │ │ ├── CompositeAnnotationsViewModel.cs │ │ │ │ ├── FibonacciAnnotations │ │ │ │ │ ├── FibonacciCompositeAnnotation.xaml │ │ │ │ │ ├── FibonacciCompositeAnnotation.xaml.cs │ │ │ │ │ ├── FibonacciExtensionAnnotation.cs │ │ │ │ │ ├── FibonacciRatioBox.xaml │ │ │ │ │ ├── FibonacciRatioBox.xaml.cs │ │ │ │ │ ├── FibonacciRatioLine.xaml │ │ │ │ │ ├── FibonacciRatioLine.xaml.cs │ │ │ │ │ ├── FibonacciRetracementAnnotation.cs │ │ │ │ │ ├── FibonacciTrendLine.xaml │ │ │ │ │ ├── FibonacciTrendLine.xaml.cs │ │ │ │ │ └── RatioModel.cs │ │ │ │ └── MeasureAnnotations │ │ │ │ │ ├── MeasureXAnnotation.xaml │ │ │ │ │ ├── MeasureXAnnotation.xaml.cs │ │ │ │ │ ├── MeasureXyAnnotation.xaml │ │ │ │ │ ├── MeasureXyAnnotation.xaml.cs │ │ │ │ │ ├── MeasureYAnnotation.xaml │ │ │ │ │ └── MeasureYAnnotation.xaml.cs │ │ │ ├── CreateAnnotationsDynamically │ │ │ │ ├── CreateAnnotationsDynamically.xaml │ │ │ │ ├── CreateAnnotationsDynamically.xaml.cs │ │ │ │ ├── MyCustomAnnotation.xaml │ │ │ │ └── MyCustomAnnotation.xaml.cs │ │ │ ├── DatapointMarkersView.xaml │ │ │ ├── DatapointMarkersView.xaml.cs │ │ │ ├── DragHorizontalThreshold │ │ │ │ ├── DragThresholdMvvm.xaml │ │ │ │ ├── DragThresholdMvvm.xaml.cs │ │ │ │ ├── DragThresholdMvvmViewModel.cs │ │ │ │ └── RedIfOverThresholdPaletteProvider.cs │ │ │ ├── InteractionWithAnnotations.xaml │ │ │ ├── InteractionWithAnnotations.xaml.cs │ │ │ ├── OverlayTradeMarkers │ │ │ │ ├── BuyMarkerAnnotation.xaml │ │ │ │ ├── BuyMarkerAnnotation.xaml.cs │ │ │ │ ├── NewsBulletAnnotation.xaml │ │ │ │ ├── NewsBulletAnnotation.xaml.cs │ │ │ │ ├── SellMarkerAnnotation.xaml │ │ │ │ ├── SellMarkerAnnotation.xaml.cs │ │ │ │ ├── TradeAnnotationViewModels.cs │ │ │ │ ├── TradeOverlayExampleView.xaml │ │ │ │ ├── TradeOverlayExampleView.xaml.cs │ │ │ │ └── TradeOverlayExampleViewModel.cs │ │ │ ├── PolarChartAnnotations.xaml │ │ │ ├── PolarChartAnnotations.xaml.cs │ │ │ └── TradeAnnotations │ │ │ │ ├── Converters.cs │ │ │ │ ├── DrawingToolsEditPanelResourceDictionary.xaml │ │ │ │ ├── TradeAnnotations.xaml │ │ │ │ ├── TradeAnnotations.xaml.cs │ │ │ │ └── TradeAnnotationsViewModel.cs │ │ ├── Charts3D │ │ │ ├── Axis3D │ │ │ │ ├── LogarithmicAxis3DView.xaml │ │ │ │ └── LogarithmicAxis3DView.xaml.cs │ │ │ ├── CreateA3DChart │ │ │ │ ├── CreateABubble3DChart.xaml │ │ │ │ ├── CreateABubble3DChart.xaml.cs │ │ │ │ ├── CreateACustomFreeSurface3DChart.xaml │ │ │ │ ├── CreateACustomFreeSurface3DChart.xaml.cs │ │ │ │ ├── CreateACylinderMesh3DChart.xaml │ │ │ │ ├── CreateACylinderMesh3DChart.xaml.cs │ │ │ │ ├── CreateACylindroidMesh3DChart.xaml │ │ │ │ ├── CreateACylindroidMesh3DChart.xaml.cs │ │ │ │ ├── CreateAPointCloud3DChart.xaml │ │ │ │ ├── CreateAPointCloud3DChart.xaml.cs │ │ │ │ ├── CreateAPointLine3DChart.xaml │ │ │ │ ├── CreateAPointLine3DChart.xaml.cs │ │ │ │ ├── CreateAPolarMesh3DChart.xaml │ │ │ │ ├── CreateAPolarMesh3DChart.xaml.cs │ │ │ │ ├── CreateAScatter3DChart.xaml │ │ │ │ ├── CreateAScatter3DChart.xaml.cs │ │ │ │ ├── CreateAUniformMesh3DChart.xaml │ │ │ │ ├── CreateAUniformMesh3DChart.xaml.cs │ │ │ │ ├── CreateAnEllipsoidMesh3DChart.xaml │ │ │ │ ├── CreateAnEllipsoidMesh3DChart.xaml.cs │ │ │ │ ├── Simple3DHeatmapChart.xaml │ │ │ │ ├── Simple3DHeatmapChart.xaml.cs │ │ │ │ ├── SparseColumn3D.xaml │ │ │ │ ├── SparseColumn3D.xaml.cs │ │ │ │ ├── SparseImpulseSeries3D.xaml │ │ │ │ ├── SparseImpulseSeries3D.xaml.cs │ │ │ │ ├── UniformColumn3D.xaml │ │ │ │ ├── UniformColumn3D.xaml.cs │ │ │ │ ├── UniformImpulseSeries3D.xaml │ │ │ │ ├── UniformImpulseSeries3D.xaml.cs │ │ │ │ └── Waterfall │ │ │ │ │ ├── CreateAWaterfall3DChart.xaml │ │ │ │ │ └── CreateAWaterfall3DChart.xaml.cs │ │ │ ├── CreateASurfaceMeshChart │ │ │ │ ├── SurfaceMeshContours.xaml │ │ │ │ ├── SurfaceMeshContours.xaml.cs │ │ │ │ ├── SurfaceMeshFloorAndCeiling.xaml │ │ │ │ ├── SurfaceMeshFloorAndCeiling.xaml.cs │ │ │ │ ├── SurfaceMeshNonUniformGrid.xaml │ │ │ │ ├── SurfaceMeshNonUniformGrid.xaml.cs │ │ │ │ ├── SurfaceMeshWithPaletteProvider.xaml │ │ │ │ └── SurfaceMeshWithPaletteProvider.xaml.cs │ │ │ ├── CreateRealtime3DCharts │ │ │ │ ├── ColorMapTemplateSelector.cs │ │ │ │ ├── CreateRealTime3DGeoidChart.xaml │ │ │ │ ├── CreateRealTime3DGeoidChart.xaml.cs │ │ │ │ ├── CreateRealTime3DPointCloudChart.xaml │ │ │ │ ├── CreateRealTime3DPointCloudChart.xaml.cs │ │ │ │ ├── CreateRealTime3DUniformMeshChart.xaml │ │ │ │ ├── CreateRealTime3DUniformMeshChart.xaml.cs │ │ │ │ ├── RealtimeOrthogonalHeatmap3DChart.xaml │ │ │ │ ├── RealtimeOrthogonalHeatmap3DChart.xaml.cs │ │ │ │ └── RealtimeWaterfall │ │ │ │ │ ├── RealtimeWaterfall3DChart.xaml │ │ │ │ │ └── RealtimeWaterfall3DChart.xaml.cs │ │ │ ├── Customize3DChart │ │ │ │ ├── AddGeometry3D │ │ │ │ │ ├── AddGeometryTo3DChart.xaml │ │ │ │ │ ├── AddGeometryTo3DChart.xaml.cs │ │ │ │ │ ├── CubeGeometry.cs │ │ │ │ │ └── TextSceneEntity.cs │ │ │ │ ├── AddObjectsToA3DChart.xaml │ │ │ │ ├── AddObjectsToA3DChart.xaml.cs │ │ │ │ ├── Customize3DSceneLighting.xaml │ │ │ │ └── Customize3DSceneLighting.xaml.cs │ │ │ ├── ManipulateSeries │ │ │ │ ├── AddRemoveDataSeries3DChart.xaml │ │ │ │ └── AddRemoveDataSeries3DChart.xaml.cs │ │ │ ├── ManipulateSeries3DMVVM │ │ │ │ ├── ManipulateSeries3DMvvmView.xaml │ │ │ │ ├── ManipulateSeries3DMvvmView.xaml.cs │ │ │ │ ├── ManipulateSeries3DMvvmViewModel.cs │ │ │ │ ├── Styles.xaml │ │ │ │ └── ViewModel3DFactory.cs │ │ │ ├── SciChartWithMvvm │ │ │ │ ├── AxisBindingAndSeriesBindingView.xaml │ │ │ │ ├── AxisBindingAndSeriesBindingView.xaml.cs │ │ │ │ └── AxisBindingAndSeriesBindingViewModel.cs │ │ │ ├── StyleA3DChart │ │ │ │ ├── Style3DChart.xaml │ │ │ │ ├── Style3DChart.xaml.cs │ │ │ │ ├── ThemeManager3DChart.xaml │ │ │ │ └── ThemeManager3DChart.xaml.cs │ │ │ ├── TooltipsAndHitTest3DCharts │ │ │ │ ├── PaletteProvider.cs │ │ │ │ ├── SelectScatterPoint3DChart.xaml │ │ │ │ ├── SelectScatterPoint3DChart.xaml.cs │ │ │ │ ├── SeriesCustomTooltips3DChart.xaml │ │ │ │ ├── SeriesCustomTooltips3DChart.xaml.cs │ │ │ │ ├── SeriesTooltips3DChart.xaml │ │ │ │ └── SeriesTooltips3DChart.xaml.cs │ │ │ └── ZoomAndPanA3DChart │ │ │ │ ├── ModifyCameraProperties.xaml │ │ │ │ ├── ModifyCameraProperties.xaml.cs │ │ │ │ ├── UseChartModifiers3D.xaml │ │ │ │ ├── UseChartModifiers3D.xaml.cs │ │ │ │ └── ZAxisUp3D │ │ │ │ ├── ContinentsLegend.cs │ │ │ │ ├── ZAxisUp3DChart.xaml │ │ │ │ ├── ZAxisUp3DChart.xaml.cs │ │ │ │ └── ZAxisUp3DChartViewModel.cs │ │ ├── CreateACustomChart │ │ │ └── SplineLineSeries │ │ │ │ ├── CubicSpline.cs │ │ │ │ ├── SplineChartExampleView.xaml │ │ │ │ ├── SplineChartExampleView.xaml.cs │ │ │ │ ├── SplineLineRenderableSeries.cs │ │ │ │ └── TriDiagonalMatrix.cs │ │ ├── CreateGaugeCharts │ │ │ ├── LegendPlacementToOrientationConverter.cs │ │ │ ├── UsingDonutChartExampleView.xaml │ │ │ ├── UsingDonutChartExampleView.xaml.cs │ │ │ ├── UsingDonutChartExampleViewModel.cs │ │ │ ├── UsingPieChartExampleView.xaml │ │ │ ├── UsingPieChartExampleView.xaml.cs │ │ │ └── UsingPieChartExampleViewModel.cs │ │ ├── CreateMultiseriesChart │ │ │ ├── CandlestickWithLinesView.xaml │ │ │ ├── CandlestickWithLinesView.xaml.cs │ │ │ ├── ChartLegendsExampleView.xaml │ │ │ ├── ChartLegendsExampleView.xaml.cs │ │ │ ├── Contours │ │ │ │ ├── ContoursExampleView.xaml │ │ │ │ └── ContoursExampleView.xaml.cs │ │ │ ├── DashboardStyleCharts │ │ │ │ ├── ChartTypeViewModel.cs │ │ │ │ ├── ChartTypeViewModelFactory.cs │ │ │ │ ├── DashboardDataHelper.cs │ │ │ │ ├── DashboardStyleChartsView.xaml │ │ │ │ ├── DashboardStyleChartsView.xaml.cs │ │ │ │ ├── DashboardStyleChartsViewModel.cs │ │ │ │ ├── ExampleListBoxStyle.xaml │ │ │ │ ├── LabelForegroundConverter.cs │ │ │ │ ├── RenderebleSeriesStyles.xaml │ │ │ │ └── SpacingModeToMaximumSpacingConverter.cs │ │ │ ├── DashboardStylePolarCharts │ │ │ │ ├── DashboardStylePolarChartsView.xaml │ │ │ │ ├── DashboardStylePolarChartsView.xaml.cs │ │ │ │ ├── DashboardStylePolarChartsViewModel.cs │ │ │ │ ├── PolarChartView.xaml │ │ │ │ ├── PolarChartView.xaml.cs │ │ │ │ ├── PolarChartViewModel.cs │ │ │ │ └── PolarChartViewModelFactory.cs │ │ │ ├── ErrorSeriesExampleView.xaml │ │ │ ├── ErrorSeriesExampleView.xaml.cs │ │ │ ├── ErrorSeriesExampleViewModel.cs │ │ │ ├── FanChartExampleView.xaml │ │ │ ├── FanChartExampleView.xaml.cs │ │ │ ├── GanttChart │ │ │ │ ├── GanttChartResources.xaml │ │ │ │ ├── GanttChartView.xaml │ │ │ │ ├── GanttChartView.xaml.cs │ │ │ │ ├── GanttChartViewModel.cs │ │ │ │ ├── GanttItemViewModel.cs │ │ │ │ ├── GanttScrollBehavior.cs │ │ │ │ ├── GanttTextLabelProvider.cs │ │ │ │ └── WeekDaysAxisCalendar.cs │ │ │ ├── GapsInSeries.xaml │ │ │ ├── GapsInSeries.xaml.cs │ │ │ ├── LineAndScatterExampleView.xaml │ │ │ ├── LineAndScatterExampleView.xaml.cs │ │ │ ├── LineAndScatterExampleViewModel.cs │ │ │ ├── StackedBarChartExampleView.xaml │ │ │ ├── StackedBarChartExampleView.xaml.cs │ │ │ ├── StackedColumnChartExampleView.xaml │ │ │ ├── StackedColumnChartExampleView.xaml.cs │ │ │ ├── StackedColumnChartSideBySideExampleView.xaml │ │ │ ├── StackedColumnChartSideBySideExampleView.xaml.cs │ │ │ ├── StackedMountainChartExampleView.xaml │ │ │ ├── StackedMountainChartExampleView.xaml.cs │ │ │ └── YearsLabelProvider.cs │ │ ├── CreateRadarChart │ │ │ ├── RadarChartCustomizationExampleView.xaml │ │ │ ├── RadarChartCustomizationExampleView.xaml.cs │ │ │ ├── RadarChartCustomizationExampleViewModel.cs │ │ │ ├── RadarChartCustomizationLabelProviders.cs │ │ │ ├── UsingRadarChartExampleView.xaml │ │ │ ├── UsingRadarChartExampleView.xaml.cs │ │ │ └── UsingRadarChartExampleViewModel.cs │ │ ├── CreateRealtimeChart │ │ │ ├── BrownianMotion.xaml │ │ │ ├── BrownianMotion.xaml.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── EEGChannelsDemo │ │ │ │ ├── EEGChannelViewModel.cs │ │ │ │ ├── EEGExampleView.xaml │ │ │ │ ├── EEGExampleView.xaml.cs │ │ │ │ └── EEGExampleViewModel.cs │ │ │ ├── RealTimeCursors.xaml │ │ │ ├── RealTimeCursors.xaml.cs │ │ │ ├── RealTimeGhostedTraces.xaml │ │ │ ├── RealTimeGhostedTraces.xaml.cs │ │ │ ├── RealTimePolarChartExampleView.xaml │ │ │ ├── RealTimePolarChartExampleView.xaml.cs │ │ │ ├── RealTimeStaticAxis │ │ │ │ ├── AnnotationGetXCoordinateConverter.cs │ │ │ │ ├── RealTimeStaticAxis.xaml │ │ │ │ └── RealTimeStaticAxis.xaml.cs │ │ │ ├── RealtimeFifoChartView.xaml │ │ │ ├── RealtimeFifoChartView.xaml.cs │ │ │ ├── UsingSeriesValueModifier.xaml │ │ │ └── UsingSeriesValueModifier.xaml.cs │ │ ├── CreateSimpleChart │ │ │ ├── BandSeriesChartExampleView.xaml │ │ │ ├── BandSeriesChartExampleView.xaml.cs │ │ │ ├── BoxPlotExampleView.xaml │ │ │ ├── BoxPlotExampleView.xaml.cs │ │ │ ├── BubbleChartExampleView.xaml │ │ │ ├── BubbleChartExampleView.xaml.cs │ │ │ ├── CandlestickChart │ │ │ │ ├── CandlestickChartExampleView.xaml │ │ │ │ ├── CandlestickChartExampleView.xaml.cs │ │ │ │ └── HollowSolidPaletteProvider.cs │ │ │ ├── ColumnChartExampleView.xaml │ │ │ ├── ColumnChartExampleView.xaml.cs │ │ │ ├── DigitalBandSeriesChartExampleView.xaml │ │ │ ├── DigitalBandSeriesChartExampleView.xaml.cs │ │ │ ├── DigitalLineChartExampleView.xaml │ │ │ ├── DigitalLineChartExampleView.xaml.cs │ │ │ ├── DigitalMountainChartExampleView.xaml │ │ │ ├── DigitalMountainChartExampleView.xaml.cs │ │ │ ├── ImpulseChartExampleView.xaml │ │ │ ├── ImpulseChartExampleView.xaml.cs │ │ │ ├── LineChartExampleView.xaml │ │ │ ├── LineChartExampleView.xaml.cs │ │ │ ├── MountainChartExampleView.xaml │ │ │ ├── MountainChartExampleView.xaml.cs │ │ │ ├── PolarChartExampleView.xaml │ │ │ ├── PolarChartExampleView.xaml.cs │ │ │ ├── ScatterChartExampleView.xaml │ │ │ └── ScatterChartExampleView.xaml.cs │ │ ├── CreateStockCharts │ │ │ ├── CreateSimpleStockChart.xaml │ │ │ ├── CreateSimpleStockChart.xaml.cs │ │ │ ├── MultiPane │ │ │ │ ├── BaseChartPaneViewModel.cs │ │ │ │ ├── CreateMultiPaneStockCharts.xaml │ │ │ │ ├── CreateMultiPaneStockCharts.xaml.cs │ │ │ │ ├── CreateMultiPaneStockChartsViewModel.cs │ │ │ │ ├── IndicatorPaneViewModel.cs │ │ │ │ ├── PricePaneViewModel.cs │ │ │ │ ├── RsiPaneViewModel.cs │ │ │ │ ├── StockChartHelper.cs │ │ │ │ └── VolumePaneViewModel.cs │ │ │ └── RealtimeMvvm │ │ │ │ ├── CreateRealTimeTickingStockChart.xaml │ │ │ │ ├── CreateRealTimeTickingStockChart.xaml.cs │ │ │ │ └── CreateRealTimeTickingStockChartViewModel.cs │ │ ├── CreateTernaryChart │ │ │ ├── CompositeTernarySeriesInfoToErrorValuesConverter.cs │ │ │ ├── ErrorBarSeriesTernaryChartExampleView.xaml │ │ │ ├── ErrorBarSeriesTernaryChartExampleView.xaml.cs │ │ │ ├── PolygonSeriesTernaryChartExampleView.xaml │ │ │ ├── PolygonSeriesTernaryChartExampleView.xaml.cs │ │ │ ├── ScatterSeriesTernaryChartExampleView.xaml │ │ │ ├── ScatterSeriesTernaryChartExampleView.xaml.cs │ │ │ └── TernaryErrorValuesVisibilityConverter.cs │ │ ├── ExportAChart │ │ │ └── ExportAndScreenshotsChart │ │ │ │ ├── ExportAndScreenshotOptionsChart.xaml │ │ │ │ └── ExportAndScreenshotOptionsChart.xaml.cs │ │ ├── FiltersAPI │ │ │ ├── CustomFilter.cs │ │ │ ├── FiltersAPIExample.xaml │ │ │ └── FiltersAPIExample.xaml.cs │ │ ├── HeatmapChartTypes │ │ │ ├── HeatmapMetadata │ │ │ │ ├── HeatmapMetadata.xaml │ │ │ │ └── HeatmapMetadata.xaml.cs │ │ │ ├── HeatmapWithText │ │ │ │ ├── HeatMapWithTextInCellsExampleView.xaml │ │ │ │ └── HeatMapWithTextInCellsExampleView.xaml.cs │ │ │ ├── NonUniformHeatmap │ │ │ │ ├── NonUniformHeatmap.xaml │ │ │ │ └── NonUniformHeatmap.xaml.cs │ │ │ ├── RealTimeHeatmap │ │ │ │ ├── HeatMapExampleView.xaml │ │ │ │ └── HeatMapExampleView.xaml.cs │ │ │ ├── UniformHeatmapAndPaletteProvider │ │ │ │ ├── UniformHeatmapAndPaletteProvider.xaml │ │ │ │ └── UniformHeatmapAndPaletteProvider.xaml.cs │ │ │ └── UniformHeatmapPeakDetection │ │ │ │ ├── UniformHeatmapPeakDetection.xaml │ │ │ │ └── UniformHeatmapPeakDetection.xaml.cs │ │ ├── InspectDatapoints │ │ │ ├── CursorModifierExampleView.xaml │ │ │ ├── CursorModifierExampleView.xaml.cs │ │ │ ├── CustomPointMarker │ │ │ │ ├── CustomPointMarker.xaml │ │ │ │ ├── CustomPointMarker.xaml.cs │ │ │ │ ├── DiamondPointMarker.cs │ │ │ │ └── StarPointMarker.cs │ │ │ ├── CustomSeriesValueMarkers │ │ │ │ ├── CustomSeriesInfoProvider.cs │ │ │ │ ├── CustomSeriesValueMarkersView.xaml │ │ │ │ ├── CustomSeriesValueMarkersView.xaml.cs │ │ │ │ ├── CustomSeriesValueMarkersViewModel.cs │ │ │ │ └── OnRenderedActionViewportManager.cs │ │ │ ├── CustomTooltipsWithModifiers.xaml │ │ │ ├── CustomTooltipsWithModifiers.xaml.cs │ │ │ ├── HitTestDatapoints.xaml │ │ │ ├── HitTestDatapoints.xaml.cs │ │ │ ├── PointMarkersSelectionExampleView.xaml │ │ │ ├── PointMarkersSelectionExampleView.xaml.cs │ │ │ ├── RolloverFeedback.xaml │ │ │ ├── RolloverFeedback.xaml.cs │ │ │ ├── SeriesSelectionExampleView.xaml │ │ │ ├── SeriesSelectionExampleView.xaml.cs │ │ │ ├── SeriesTooltipsExample.xaml │ │ │ ├── SeriesTooltipsExample.xaml.cs │ │ │ ├── SeriesTooltipsViewModel.cs │ │ │ ├── SeriesVerticalSlicesExample.xaml │ │ │ ├── SeriesVerticalSlicesExample.xaml.cs │ │ │ ├── SeriesWithMetadata │ │ │ │ ├── AnnotatedPointMarker.cs │ │ │ │ ├── BudgetPointMetadata.cs │ │ │ │ ├── GainLossPaletteProvider.cs │ │ │ │ ├── SeriesWithMetadata.xaml │ │ │ │ └── SeriesWithMetadata.xaml.cs │ │ │ └── ThresholdBackgroundConverter.cs │ │ ├── ManipulateSeries │ │ │ ├── AddRemoveDataSeriesExampleView.xaml │ │ │ ├── AddRemoveDataSeriesExampleView.xaml.cs │ │ │ ├── ChangeRenderableSeriesTypeExampleView.xaml │ │ │ └── ChangeRenderableSeriesTypeExampleView.xaml.cs │ │ ├── ModifyAxisBehaviour │ │ │ ├── CategoryVsValueAxis.xaml │ │ │ ├── CategoryVsValueAxis.xaml.cs │ │ │ ├── CategoryVsValueAxisViewModel.cs │ │ │ ├── CompatibleDatePicker.cs │ │ │ ├── LeftRightYAxes.xaml │ │ │ ├── LeftRightYAxes.xaml.cs │ │ │ ├── LogarithmicAxisView.xaml │ │ │ ├── LogarithmicAxisView.xaml.cs │ │ │ ├── MixedCharts.xaml │ │ │ ├── MixedCharts.xaml.cs │ │ │ ├── ModifyAxisProperties.xaml │ │ │ ├── ModifyAxisProperties.xaml.cs │ │ │ ├── MultipleXAxes.xaml │ │ │ ├── MultipleXAxes.xaml.cs │ │ │ ├── PolarChartWithMultipleAxes.xaml │ │ │ ├── PolarChartWithMultipleAxes.xaml.cs │ │ │ ├── QuadLeftRightAxes.xaml │ │ │ ├── QuadLeftRightAxes.xaml.cs │ │ │ ├── ShiftedAxes │ │ │ │ ├── ShiftedAxes.xaml │ │ │ │ ├── ShiftedAxes.xaml.cs │ │ │ │ └── ShiftedAxesBehavior.cs │ │ │ ├── SwitchAxisTypeAtRuntime.xaml │ │ │ ├── SwitchAxisTypeAtRuntime.xaml.cs │ │ │ ├── SwitchAxisTypeAtRuntimeViewModel.cs │ │ │ ├── SwitchAxisTypeBehavior.cs │ │ │ ├── VerticalCharts.xaml │ │ │ ├── VerticalCharts.xaml.cs │ │ │ ├── VerticallyStackedAxes.xaml │ │ │ └── VerticallyStackedAxes.xaml.cs │ │ ├── PerformanceDemos2D │ │ │ ├── DigitalAnalyzer │ │ │ │ ├── ChannelViewModel.cs │ │ │ │ ├── Common │ │ │ │ │ ├── ChannelGenerationHelper.cs │ │ │ │ │ ├── ColorHelper.cs │ │ │ │ │ ├── DigitalAnalyzerScrollBehavior.cs │ │ │ │ │ ├── FocusedChannelScrollBehavior.cs │ │ │ │ │ ├── PointCountToLabelConverter.cs │ │ │ │ │ ├── RandomGenerator.cs │ │ │ │ │ ├── TimeLabelProvider.cs │ │ │ │ │ └── UniformDataManager.cs │ │ │ │ ├── DigitalAnalyzerExampleView.xaml │ │ │ │ ├── DigitalAnalyzerExampleView.xaml.cs │ │ │ │ └── DigitalAnalyzerExampleViewModel.cs │ │ │ ├── FifoBillionPoints │ │ │ │ ├── BoolToAxisAutoRangeConverter.cs │ │ │ │ ├── FifoBillionPointsPageView.xaml │ │ │ │ ├── FifoBillionPointsPageView.xaml.cs │ │ │ │ ├── FifoBillionPointsPageViewModel.cs │ │ │ │ ├── NoLockTimer.cs │ │ │ │ ├── PointCount.cs │ │ │ │ ├── Rand.cs │ │ │ │ ├── RenderSyncedTimer.cs │ │ │ │ ├── SurfaceViewportManager.cs │ │ │ │ └── SystemMemoryInfo.cs │ │ │ ├── Load500By500 │ │ │ │ ├── LineSeriesSource.cs │ │ │ │ ├── Load500By500PageView.xaml │ │ │ │ ├── Load500By500PageView.xaml.cs │ │ │ │ └── Load500By500PageViewModel.cs │ │ │ ├── LoadMillions │ │ │ │ ├── LoadMillionsPageView.xaml │ │ │ │ ├── LoadMillionsPageView.xaml.cs │ │ │ │ └── LoadMillionsPageViewModel.cs │ │ │ ├── ScatterPerf │ │ │ │ ├── FastPalettedScatterCharts.xaml │ │ │ │ ├── FastPalettedScatterCharts.xaml.cs │ │ │ │ ├── ScatterChartPerformanceTest.xaml │ │ │ │ └── ScatterChartPerformanceTest.xaml.cs │ │ │ └── UpdateScatter │ │ │ │ ├── BindingProxy.cs │ │ │ │ ├── Defender.cs │ │ │ │ ├── Person.cs │ │ │ │ ├── UpdateScatterPointsView.xaml │ │ │ │ ├── UpdateScatterPointsView.xaml.cs │ │ │ │ ├── UpdateScatterPointsViewModel.cs │ │ │ │ ├── Victim.cs │ │ │ │ └── World.cs │ │ ├── SeeFeaturedApplication │ │ │ ├── AggregationFilters │ │ │ │ ├── AggregationFiltersView.xaml │ │ │ │ ├── AggregationFiltersView.xaml.cs │ │ │ │ ├── AggregationFiltersViewModel.cs │ │ │ │ └── AggregationPriceToVisibilityConverter.cs │ │ │ ├── AudioAnalyzer │ │ │ │ ├── AudioAnalyzerPaletteProvider.cs │ │ │ │ ├── AudioAnalyzerView.xaml │ │ │ │ ├── AudioAnalyzerView.xaml.cs │ │ │ │ ├── AudioAnalyzerViewModel.cs │ │ │ │ ├── AudioDataAnalyzer.cs │ │ │ │ ├── AudioDeviceHandler.cs │ │ │ │ ├── AudioDeviceInfo.cs │ │ │ │ ├── AudioDeviceSource.cs │ │ │ │ ├── SampleReader.cs │ │ │ │ └── YPeakViewportManager.cs │ │ │ ├── Common │ │ │ │ └── Calendars.cs │ │ │ ├── DiscontinuousAxisDemo │ │ │ │ ├── DiscontinuousAxisView.xaml │ │ │ │ ├── DiscontinuousAxisView.xaml.cs │ │ │ │ └── DiscontinuousAxisViewModel.cs │ │ │ ├── ECGMonitor │ │ │ │ ├── BeatToScaleConverter.cs │ │ │ │ ├── ECGMonitorView.xaml │ │ │ │ ├── ECGMonitorView.xaml.cs │ │ │ │ └── ECGMonitorViewModel.cs │ │ │ ├── Histogram │ │ │ │ ├── CustomAnnotationModifier.cs │ │ │ │ ├── HistogramLabelAnnotation.xaml │ │ │ │ ├── HistogramLabelAnnotation.xaml.cs │ │ │ │ ├── HistogramLabelViewModel.cs │ │ │ │ ├── HistogramView.xaml │ │ │ │ ├── HistogramView.xaml.cs │ │ │ │ ├── HistogramViewModel.cs │ │ │ │ └── Styles.xaml │ │ │ ├── Lidar3DPointCloudDemo │ │ │ │ ├── Lidar3DPointCloudDemoView.xaml │ │ │ │ └── Lidar3DPointCloudDemoView.xaml.cs │ │ │ ├── Oscilloscope │ │ │ │ ├── CustomAxisInfoTemplateSelector.cs │ │ │ │ ├── OscilloscopeView.xaml │ │ │ │ ├── OscilloscopeView.xaml.cs │ │ │ │ ├── OscilloscopeViewModel.cs │ │ │ │ └── ShiftedAxesBehavior.cs │ │ │ ├── ParallelCoordinatePlot │ │ │ │ ├── ParallelCoordinatePlotView.xaml │ │ │ │ └── ParallelCoordinatePlotView.xaml.cs │ │ │ ├── PerformanceDemo │ │ │ │ ├── RealTimePerformanceDemoView.xaml │ │ │ │ └── RealTimePerformanceDemoView.xaml.cs │ │ │ ├── SciTrader │ │ │ │ ├── SciTraderView.xaml │ │ │ │ ├── SciTraderView.xaml.cs │ │ │ │ └── SciTraderViewModel.cs │ │ │ ├── Spectrogram │ │ │ │ ├── SpectrogramDemoView.xaml │ │ │ │ └── SpectrogramDemoView.xaml.cs │ │ │ ├── SpectrumAnalyzer │ │ │ │ ├── SpectrumAnalyzerExampleView.xaml │ │ │ │ ├── SpectrumAnalyzerExampleView.xaml.cs │ │ │ │ └── SpectrumAnalyzerExampleViewModel.cs │ │ │ ├── TenorCurves3DChart │ │ │ │ ├── TenorCurves3DChart.xaml │ │ │ │ └── TenorCurves3DChart.xaml.cs │ │ │ ├── VitalSignsMonitor │ │ │ │ ├── VitalSignsBatch.cs │ │ │ │ ├── VitalSignsDataProvider.cs │ │ │ │ ├── VitalSignsIndicatorsProvider.cs │ │ │ │ ├── VitalSignsMonitorView.xaml │ │ │ │ ├── VitalSignsMonitorView.xaml.cs │ │ │ │ └── VitalSignsPaletteProvider.cs │ │ │ └── WaterfallChart │ │ │ │ ├── CustomWaterfallNumericAxis.cs │ │ │ │ ├── CustomWaterfallRubberBandXyZoomModifier.cs │ │ │ │ ├── VerticalValuesPaletteProvider.cs │ │ │ │ ├── WaterfallChart.xaml │ │ │ │ └── WaterfallChart.xaml.cs │ │ ├── StyleAChart │ │ │ ├── CustomTheme │ │ │ │ ├── CustomTheme.cs │ │ │ │ ├── CustomTheme.xaml │ │ │ │ ├── CustomThemeView.xaml │ │ │ │ └── CustomThemeView.xaml.cs │ │ │ ├── LineSeriesStyling.xaml │ │ │ ├── LineSeriesStyling.xaml.cs │ │ │ ├── LineSeriesStylingViewModel.cs │ │ │ ├── UseHighQualityRendering.xaml │ │ │ ├── UseHighQualityRendering.xaml.cs │ │ │ ├── UseHighQualityRenderingViewModel.cs │ │ │ ├── UseLabelProvider │ │ │ │ ├── CustomLabelParams.cs │ │ │ │ ├── CustomLabelProvider.cs │ │ │ │ ├── CustomLabelViewModel.cs │ │ │ │ ├── LabelColorGenerator.cs │ │ │ │ ├── UseLabelProvider.xaml │ │ │ │ └── UseLabelProvider.xaml.cs │ │ │ ├── UsePaletteProvider │ │ │ │ ├── AreaSelection.cs │ │ │ │ ├── AreaSelectionModifier.cs │ │ │ │ ├── SelectedAreaConverter.cs │ │ │ │ ├── SelectedRangePaletteProviderBase.cs │ │ │ │ ├── StrokeFillPaletteProvider.cs │ │ │ │ ├── UsePaletteProvider.xaml │ │ │ │ ├── UsePaletteProvider.xaml.cs │ │ │ │ └── UsePaletteProviderViewModel.cs │ │ │ ├── UsePointMarkers.xaml │ │ │ ├── UsePointMarkers.xaml.cs │ │ │ ├── UsePointMarkersResourceDictionary.xaml │ │ │ ├── UsingThemeManager │ │ │ │ ├── ChangeTheme.xaml │ │ │ │ └── ChangeTheme.xaml.cs │ │ │ ├── XamlStyling.xaml │ │ │ └── XamlStyling.xaml.cs │ │ ├── UseSciChartWithMvvm │ │ │ ├── BindMultipleCharts │ │ │ │ ├── BindMultipleChartsGroupView.xaml │ │ │ │ ├── BindMultipleChartsGroupView.xaml.cs │ │ │ │ ├── BindMultipleChartsGroupViewModel.cs │ │ │ │ ├── ChartView.xaml │ │ │ │ ├── ChartView.xaml.cs │ │ │ │ └── ChartViewModel.cs │ │ │ ├── BindToDataSeriesSet │ │ │ │ ├── BindToDataSeriesSetView.xaml │ │ │ │ ├── BindToDataSeriesSetView.xaml.cs │ │ │ │ └── BindToDataSeriesSetViewModel.cs │ │ │ ├── ManipulateSeriesMVVM │ │ │ │ ├── ManipulateSeriesMvvmView.xaml │ │ │ │ ├── ManipulateSeriesMvvmView.xaml.cs │ │ │ │ ├── ManipulateSeriesMvvmViewModel.cs │ │ │ │ ├── SeriesType.cs │ │ │ │ ├── Styles.xaml │ │ │ │ └── ViewModelsFactory.cs │ │ │ ├── SciChartMVVMBindings │ │ │ │ ├── ArrowAnnotation.xaml │ │ │ │ ├── ArrowAnnotation.xaml.cs │ │ │ │ ├── ArrowAnnotationViewModel.cs │ │ │ │ ├── SciChartMvvmBindingsView.xaml │ │ │ │ ├── SciChartMvvmBindingsView.xaml.cs │ │ │ │ └── SciChartMvvmBindingsViewModel.cs │ │ │ └── SeriesBinding │ │ │ │ ├── SeriesBindingView.xaml │ │ │ │ ├── SeriesBindingView.xaml.cs │ │ │ │ └── SeriesBindingViewModel.cs │ │ ├── ZoomAndPanAChart │ │ │ ├── CustomOverview │ │ │ │ ├── CustomOverviewView.xaml │ │ │ │ ├── CustomOverviewView.xaml.cs │ │ │ │ └── CustomOverviewViewModel.cs │ │ │ ├── DragAreaToZoom.xaml │ │ │ ├── DragAreaToZoom.xaml.cs │ │ │ ├── DragAxisToScale.xaml │ │ │ ├── DragAxisToScale.xaml.cs │ │ │ ├── MouseDragToPan.xaml │ │ │ ├── MouseDragToPan.xaml.cs │ │ │ ├── MouseDragToPanXOrY.xaml │ │ │ ├── MouseDragToPanXOrY.xaml.cs │ │ │ ├── MouseWheelToZoomPan.xaml │ │ │ ├── MouseWheelToZoomPan.xaml.cs │ │ │ ├── ScrollBars.xaml │ │ │ ├── ScrollBars.xaml.cs │ │ │ ├── ScrollChartUsingOverviewControl.xaml │ │ │ ├── ScrollChartUsingOverviewControl.xaml.cs │ │ │ ├── SynchronizeMouseAcrossCharts.xaml │ │ │ ├── SynchronizeMouseAcrossCharts.xaml.cs │ │ │ └── SynchronizeMouseAcrossChartsViewModel.cs │ │ └── ZoomHistory │ │ │ ├── SimpleUndoRedoView.xaml │ │ │ ├── SimpleUndoRedoView.xaml.cs │ │ │ └── ZoomHistoryMVVM │ │ │ ├── ZoomHistoryMvvmView.xaml │ │ │ ├── ZoomHistoryMvvmView.xaml.cs │ │ │ └── ZoomHistoryMvvmViewModel.cs │ ├── Features.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExampleDefinitions │ │ │ ├── a3D_Charts │ │ │ │ ├── Basic_Chart_Types │ │ │ │ │ ├── Closed_Mesh_3D_Chart.xml │ │ │ │ │ ├── Simple_Bubble_3D_Chart.xml │ │ │ │ │ ├── Simple_Cylindroid_3D_Chart.xml │ │ │ │ │ ├── Simple_Ellipsoid_3D_Chart.xml │ │ │ │ │ ├── Simple_Point-Cloud_3D_Chart.xml │ │ │ │ │ ├── Simple_PointLine_Chart_3D.xml │ │ │ │ │ ├── Simple_Polar_3D_Chart.xml │ │ │ │ │ ├── Simple_Scatter_Chart_3D.xml │ │ │ │ │ ├── Simple_Uniform_Mesh_3D_Chart.xml │ │ │ │ │ ├── Simple_Waterfall_3D_Chart.xml │ │ │ │ │ ├── Sparse_Column_3D.xml │ │ │ │ │ ├── Sparse_Impulse_Series_3D.xml │ │ │ │ │ ├── Uniform_Column_3D.xml │ │ │ │ │ ├── Uniform_Impulse_Series_3D.xml │ │ │ │ │ └── Uniform_Orthogonal_Heatmap_3D_Chart.xml │ │ │ │ ├── Create_A_Surface_Mesh_Chart │ │ │ │ │ ├── Surface_Mesh_3D_Floor_Ceiling.xml │ │ │ │ │ ├── Surface_Mesh_3D_Non-Uniform_Data.xml │ │ │ │ │ ├── Surface_Mesh_3D_PaletteProvider.xml │ │ │ │ │ └── Surface_Mesh_3D_With_Contours.xml │ │ │ │ ├── Customize_3D_Charts │ │ │ │ │ ├── Add_Geometry_To_a_3D_Chart.xml │ │ │ │ │ ├── Add_Objects_To_a_3D_Chart.xml │ │ │ │ │ └── Customize_3D_Scene_Lighting.xml │ │ │ │ ├── MVVM_Examples │ │ │ │ │ ├── Axis_Binding.xml │ │ │ │ │ └── Manipulate_Series_via_Series_Binding.xml │ │ │ │ ├── Manipulate_Series │ │ │ │ │ └── Simple_Add_Remove_Data_Series_3D_Chart.xml │ │ │ │ ├── Modify_Axis3D_Behavior │ │ │ │ │ └── Logarithmic_Axis3D.xml │ │ │ │ ├── Realtime_3D_Charts │ │ │ │ │ ├── RealTime_3D_Geoid.xml │ │ │ │ │ ├── RealTime_3D_Heatmap_Spectrogram_Chart.xml │ │ │ │ │ ├── RealTime_3D_Point_Cloud.xml │ │ │ │ │ ├── RealTime_3D_Surface_Mesh.xml │ │ │ │ │ └── RealTime_3D_Waterfall_Chart.xml │ │ │ │ ├── Style_a_3D_Chart │ │ │ │ │ ├── Simple_Theme_Manager_3D_Chart.xml │ │ │ │ │ └── Style_3D_Chart.xml │ │ │ │ ├── Tooltips_and_Hit_Test_3D_Charts │ │ │ │ │ ├── Series_Custom_Tooltips_3D_Chart.xml │ │ │ │ │ ├── Series_Tooltips_3D_Chart.xml │ │ │ │ │ └── Simple_Select_Scatter_Point_3D_Chart.xml │ │ │ │ └── Zoom_and_Pan_a_3D_Chart │ │ │ │ │ ├── Change_Viewport_3D_Orientation.xml │ │ │ │ │ ├── Modify_Camera3D_Properties.xml │ │ │ │ │ └── Use_Chart_Modifiers_3D.xml │ │ │ ├── b2D_Charts │ │ │ │ ├── Basic_Chart_Types │ │ │ │ │ ├── Band_Series_Chart.xml │ │ │ │ │ ├── Box_Plot.xml │ │ │ │ │ ├── Bubble_Chart.xml │ │ │ │ │ ├── Candlestick_Chart.xml │ │ │ │ │ ├── Column_Chart.xml │ │ │ │ │ ├── Digital_Band_Series_Chart.xml │ │ │ │ │ ├── Digital_Line_Chart.xml │ │ │ │ │ ├── Digital_Mountain_Chart.xml │ │ │ │ │ ├── Impulse_(Stem)_Chart.xml │ │ │ │ │ ├── Line_Chart.xml │ │ │ │ │ ├── Mountain_Chart.xml │ │ │ │ │ ├── Polar_Chart.xml │ │ │ │ │ └── Scatter_Chart.xml │ │ │ │ ├── Chart_Annotations │ │ │ │ │ ├── Annotations_are_Easy!.xml │ │ │ │ │ ├── Composite_Annotations.xml │ │ │ │ │ ├── Create_Annotations_Dynamically.xml │ │ │ │ │ ├── Datapoint_Markers.xml │ │ │ │ │ ├── Drag_Horizontal_Threshold.xml │ │ │ │ │ ├── Interaction_with_Annotations.xml │ │ │ │ │ ├── Polar_Chart_Annotations.xml │ │ │ │ │ ├── Trade_Annotations.xml │ │ │ │ │ └── Trade_Markers.xml │ │ │ │ ├── Create_Custom_Charts │ │ │ │ │ └── Spline Scatter Line Chart.xml │ │ │ │ ├── Create_Realtime_Charts │ │ │ │ │ ├── 50-Channel_EEG.xml │ │ │ │ │ ├── FIFO_(Scrolling)_Charts.xml │ │ │ │ │ ├── Real-time_with_Cursors.xml │ │ │ │ │ ├── Realtime_Ghosted_Traces.xml │ │ │ │ │ ├── Realtime_Polar_Charts.xml │ │ │ │ │ ├── Realtime_Series_Values.xml │ │ │ │ │ └── Realtime_Static_Axis.xml │ │ │ │ ├── Create_Stock_Charts │ │ │ │ │ ├── Multi-Pane_Stock_Charts.xml │ │ │ │ │ ├── Realtime_Ticking_Stock_Charts.xml │ │ │ │ │ └── Using_SciStockChart.xml │ │ │ │ ├── Create_a_Gauge_Charts │ │ │ │ │ ├── Using_Donut_Chart.xml │ │ │ │ │ └── Using_Pie_Chart.xml │ │ │ │ ├── Create_a_Multiseries_Chart │ │ │ │ │ ├── Candlestick_and_Lines.xml │ │ │ │ │ ├── Contours_With_Heatmap_Chart.xml │ │ │ │ │ ├── Dashboard_Style_Charts.xml │ │ │ │ │ ├── Dashboard_Style_Polar_Charts.xml │ │ │ │ │ ├── Error_Bars.xml │ │ │ │ │ ├── Fan_Chart.xml │ │ │ │ │ ├── Gantt_Chart.xml │ │ │ │ │ ├── Gaps_In_Series.xml │ │ │ │ │ ├── Line_and_Scatter_Chart.xml │ │ │ │ │ ├── Stacked_Bar_Chart.xml │ │ │ │ │ ├── Stacked_Column_Chart.xml │ │ │ │ │ ├── Stacked_Column_Side_By_Side.xml │ │ │ │ │ └── Stacked_Mountain_Chart.xml │ │ │ │ ├── Create_a_Radar_Chart │ │ │ │ │ ├── Radar_Chart_Customization_Example.xml │ │ │ │ │ └── Using_Radar_Chart.xml │ │ │ │ ├── Create_a_Ternary_Chart │ │ │ │ │ ├── ErrorBar_Series_TernaryChart.xml │ │ │ │ │ ├── Polygon_Series_TernaryChart.xml │ │ │ │ │ └── Scatter_Series_TernaryChart.xml │ │ │ │ ├── Export_a_Chart │ │ │ │ │ └── Export_and_Screenshot_Options_in_Chart.xml │ │ │ │ ├── Filters_API │ │ │ │ │ └── Filters_API_Example.xml │ │ │ │ ├── HeatmapChartTypes │ │ │ │ │ ├── HeatmapMetaData.xml │ │ │ │ │ ├── Heatmap_Chart.xml │ │ │ │ │ ├── Heatmap_Chart_with_Text.xml │ │ │ │ │ ├── NonUniformHeatmap.xml │ │ │ │ │ ├── UniformHeatmap_and_CustomPaletteProvider.xml │ │ │ │ │ └── UniformHeatmap_and_HeatmapPeakDetector.xml │ │ │ │ ├── Legends │ │ │ │ │ └── Chart Legends API.xml │ │ │ │ ├── Link_Multiple_Charts │ │ │ │ │ └── Sync_Multi_Chart_Mouse.xml │ │ │ │ ├── MVVM_Examples │ │ │ │ │ ├── Axis_Binding_and_Annotation_Binding.xml │ │ │ │ │ ├── Bind_Multiple_Charts.xml │ │ │ │ │ ├── Bind_SciChart_to_Data.xml │ │ │ │ │ ├── Manipulate_Series_Mvvm.xml │ │ │ │ │ └── Series_Binding.xml │ │ │ │ ├── Manipulate_Series │ │ │ │ │ ├── Add_or_Remove_Data_Series_In_Code.xml │ │ │ │ │ └── Change_Renderable_Series_Type_In_Code.xml │ │ │ │ ├── Modify_Axis_Behavior │ │ │ │ │ ├── Category_vs_Value_Axis.xml │ │ │ │ │ ├── Central_XAxis_and_YAxis.xml │ │ │ │ │ ├── Logarithmic_Axis.xml │ │ │ │ │ ├── Modify_Axis_Properties.xml │ │ │ │ │ ├── Multiple-XAxis.xml │ │ │ │ │ ├── Multiple_YAxis.xml │ │ │ │ │ ├── Polar_Chart_with_Multiple_Axis.xml │ │ │ │ │ ├── Secondary_Y-Axis.xml │ │ │ │ │ ├── Switch_Axis_Type_At_Runtime.xml │ │ │ │ │ ├── Vertical_Charts.xml │ │ │ │ │ └── Vertically_Stacked_YAxis.xml │ │ │ │ ├── Styling_and_Theming │ │ │ │ │ ├── Create_a_Custom_Theme.xml │ │ │ │ │ ├── Dashed_Line_Styling.xml │ │ │ │ │ ├── Use_High_Quality_Rendering.xml │ │ │ │ │ ├── Using_LabelProvider.xml │ │ │ │ │ ├── Using_PaletteProvider.xml │ │ │ │ │ ├── Using_PointMarkers.xml │ │ │ │ │ ├── Using_ThemeManager.xml │ │ │ │ │ └── Xaml_Styling.xml │ │ │ │ ├── Tooltips_and_Hit-Test │ │ │ │ │ ├── Custom_Point_Marker.xml │ │ │ │ │ ├── Custom_SeriesValue_Markers.xml │ │ │ │ │ ├── Custom_Tooltips_With_Modifiers.xml │ │ │ │ │ ├── Hit-Test_API.xml │ │ │ │ │ ├── PointMarkers_Selection.xml │ │ │ │ │ ├── Series_Selection.xml │ │ │ │ │ ├── Series_With_Metadata.xml │ │ │ │ │ ├── Using_CursorModifier_Tooltips.xml │ │ │ │ │ ├── Using_RolloverModifier_Tooltips.xml │ │ │ │ │ ├── Using_TooltipModifier_Tooltips.xml │ │ │ │ │ └── Using_Vertical_Slice_Tooltips.xml │ │ │ │ ├── Zoom_History_Manager │ │ │ │ │ ├── Simple_Undo_Redo.xml │ │ │ │ │ └── Zoom_History_MVVM.xml │ │ │ │ └── Zoom_and_Pan_a_Chart │ │ │ │ │ ├── Custom_Overview_Control.xml │ │ │ │ │ ├── Drag_Area_to_Zoom.xml │ │ │ │ │ ├── Drag_Axis_to_Scale.xml │ │ │ │ │ ├── Mousewheel_Zoom_and_Scroll.xml │ │ │ │ │ ├── Pan_Y_or_X_Direction.xml │ │ │ │ │ ├── Pan_on_Mouse-Drag.xml │ │ │ │ │ ├── Per-Axis_Scrollbars.xml │ │ │ │ │ └── Scroll_Chart_using_Overview_Control.xml │ │ │ └── cFeatured_Apps │ │ │ │ ├── Financial_Charts │ │ │ │ ├── Aggregation_Filters.xml │ │ │ │ ├── Discontinuous_Axis_Demo.xml │ │ │ │ ├── SciChart_Trader_Demo.xml │ │ │ │ └── Tenor_Curves_3D_Chart.xml │ │ │ │ ├── Medical_Charts │ │ │ │ ├── ECG_Monitor_Demo.xml │ │ │ │ └── Vital_Signs_Monitor_Demo.xml │ │ │ │ ├── Parallel_Coordinate_Plot │ │ │ │ └── Parallel_Coordinate_Plot.xml │ │ │ │ ├── Performance_Demos │ │ │ │ ├── Digital_Analyzer_Performance_Demo.xml │ │ │ │ ├── Fast_Paletted_Scatter_Charts.xml │ │ │ │ ├── Fifo_1Billion_Points_Demo.xml │ │ │ │ ├── Load_1Million_Points_Instantly.xml │ │ │ │ ├── Load_500_Series_x_500_points.xml │ │ │ │ ├── NBody_2D_Scatter_Chart_Simulation.xml │ │ │ │ ├── Performance_Demo.xml │ │ │ │ └── Scatter_Chart_Performance_Demo.xml │ │ │ │ └── Scientific_Charts │ │ │ │ ├── Audio_Analyzer_Demo.xml │ │ │ │ ├── Histogram.xml │ │ │ │ ├── LIDAR_PointCloud_3D_Demo.xml │ │ │ │ ├── Oscilloscope_Demo.xml │ │ │ │ ├── Spectrogram_Demo_Chart.xml │ │ │ │ ├── Spectrum_Analyzer_Demo.xml │ │ │ │ └── Waterfall_Chart_Demo.xml │ │ └── Images │ │ │ ├── add-objects-3d-chart.png │ │ │ ├── histogram-chart.png │ │ │ ├── parallel-coordinate-plot.png │ │ │ ├── realtime-3d-surface-mesh.png │ │ │ ├── simple-waterfall-3d-chart.png │ │ │ ├── spectrogram-chart.png │ │ │ ├── tenor-curves-3d-chart.png │ │ │ ├── theme-manager-chart.png │ │ │ ├── vital-signs-monitor.png │ │ │ └── waterfall-chart.png │ ├── SciChart.Examples.csproj │ ├── ThemeLoader.cs │ ├── Themes │ │ ├── Dark.xaml │ │ ├── Generic.xaml │ │ └── Navy.xaml │ ├── Urls.cs │ └── app.config └── SciChart2D3D.Examples.sln ├── LICENSE ├── README.md ├── Sandbox ├── CustomerExamples │ ├── 3DChartChangePropertiesDynamically │ │ ├── 3DChartChangePropertiesDynamically.csproj │ │ ├── 3DChartChangePropertiesDynamically.sln │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AxisGridlineBehaviour.cs │ │ ├── ChangePropertiesDynamically.xaml │ │ ├── ChangePropertiesDynamically.xaml.cs │ │ ├── ChangePropertiesDynamicallyViewModel.cs │ │ └── NuGet.config │ ├── 3DChartScatterSeriesOnWalls │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── Scatter3DOnChartWalls.csproj │ │ ├── Scatter3DOnChartWalls.sln │ │ ├── Scatter3DOnChartWalls.xaml │ │ └── Scatter3DOnChartWalls.xaml.cs │ ├── 3DChartSelectPointsOnSurfaceMesh │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── SurfaceMesh3DWithSelectablePoints.csproj │ │ ├── SurfaceMesh3DWithSelectablePoints.sln │ │ ├── SurfaceMesh3DWithSelectablePoints.xaml │ │ └── SurfaceMesh3DWithSelectablePoints.xaml.cs │ ├── 3DScatterChart_DragPointModifier │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DragPointYAxisModifier3D.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Scatter3DChart_DragPointModifier.csproj │ │ └── Scatter3DChart_DragPointModifier.sln │ ├── AddObjectsToA3DChart │ │ ├── AddObjectsToA3DChart.sln │ │ └── AddObjectsToA3DChart │ │ │ ├── AddObjectsToA3DChart.csproj │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── King_Low.obj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── NuGet.config │ │ │ └── WhiteWoodTexture.jpg │ ├── AnimatedDataSeries │ │ ├── AnimatedDataSeries.xaml │ │ ├── AnimatedDataSeries.xaml.cs │ │ ├── AnimatedDataSeriesFilter.cs │ │ ├── AnimatedDataSeriesFilter.csproj │ │ ├── AnimatedDataSeriesFilter.sln │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ └── NuGet.config │ ├── AnnotationDragModifier3D │ │ ├── AnnotationDragModifier3D.csproj │ │ ├── AnnotationDragModifier3D.sln │ │ ├── AnnotationDragModifier3D.xaml │ │ ├── AnnotationDragModifier3D.xaml.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BoxAnnotation3D.cs │ │ └── NuGet.config │ ├── AnnotationsBindingToTextBox │ │ ├── AnnotationsBindingToTextBox.csproj │ │ ├── AnnotationsBindingToTextBox.sln │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── AspectRatioGridLines │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AspectRatioGridLines.csproj │ │ ├── AspectRatioGridLines.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── VisibleRangeHelper.cs │ │ └── ZoomExtentsModifierEx.cs │ ├── AspectRatioSandbox │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AspectRatios.csproj │ │ ├── AspectRatios.sln │ │ ├── AspectRatios.xaml │ │ ├── AspectRatios.xaml.cs │ │ ├── NuGet.config │ │ ├── Readme.md │ │ └── aspectratio.png │ ├── AxisMvvmApplyStyle │ │ ├── AxisMvvmApplyStyle.sln │ │ └── AxisMvvmApplyStyle │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AxisMvvmApplyStyle.csproj │ │ │ ├── MainViewModel.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── NuGet.config │ ├── ChartPrinting │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ChartPrintingMultiPaneCharts.csproj │ │ ├── ChartPrintingMultiPaneCharts.sln │ │ ├── ChartPrintingMultiPaneCharts.xaml │ │ ├── ChartPrintingMultiPaneCharts.xaml.cs │ │ ├── ChartPrintingMultiPaneChartsViewModel.cs │ │ ├── LineChartViewModel.cs │ │ └── NuGet.config │ ├── ChartsWidthSync │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ChartWidthSynchronization.csproj │ │ ├── ChartWidthSynchronization.sln │ │ ├── ChartWidthSynchronizationView.xaml │ │ ├── ChartWidthSynchronizationView.xaml.cs │ │ ├── ChartWidthSynchronizationViewModel.cs │ │ ├── ExampleResources.xaml │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── ColumnSeriesNoGaps │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ColumnSeriesNoGaps.csproj │ │ ├── ColumnSeriesNoGaps.sln │ │ ├── ColumnSeriesNoGaps.xaml │ │ ├── ColumnSeriesNoGaps.xaml.cs │ │ └── NuGet.config │ ├── CompositeAnnotationsMvvm │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CompositeAnnotationsMvvm.csproj │ │ ├── CompositeAnnotationsMvvm.sln │ │ ├── CompositeAnnotationsMvvm.xaml │ │ ├── CompositeAnnotationsMvvm.xaml.cs │ │ ├── CompositeAnnotationsMvvmViewModel.cs │ │ ├── NuGet.config │ │ ├── RangeXAnnotation.xaml │ │ ├── RangeXAnnotation.xaml.cs │ │ └── RangeXAnnotationViewModel.cs │ ├── CustomAxisBandsProvider │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AxisBandsInfoModifier.cs │ │ ├── CustomAxisBandsProvider.csproj │ │ ├── CustomAxisBandsProvider.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ └── XAxisBandsProvider.cs │ ├── CustomCompositeAnnotationExample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CompositeLineSquareAnnotation.cs │ │ ├── CustomCompositeAnnotationExample.csproj │ │ ├── CustomCompositeAnnotationExample.sln │ │ ├── CustomCompositeAnnotationExample.xaml │ │ ├── CustomCompositeAnnotationExample.xaml.cs │ │ ├── CustomCompositeAnnotationViewModel.cs │ │ └── NuGet.config │ ├── CustomModifiersSandbox │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CustomModifierSandbox.csproj │ │ ├── CustomModifierSandbox.sln │ │ ├── CustomModifierSandbox.xaml │ │ ├── CustomModifierSandbox.xaml.cs │ │ ├── CustomModifierSandboxViewModel.cs │ │ ├── DetectClicksOnChartPartsModifier.cs │ │ ├── InverseBooleanConverter.cs │ │ ├── NuGet.config │ │ ├── SimpleDataPointEditModifier.cs │ │ ├── SimpleDataPointSelectionModifier.cs │ │ ├── SimpleFreeDrawModifier.cs │ │ ├── SimpleLegendModifier.cs │ │ ├── SimpleRolloverModifier.cs │ │ ├── SimpleSeriesDragModifier.cs │ │ ├── SimpleZoomInOutModifier.cs │ │ ├── SimpleZoomPanModifier.cs │ │ └── YAxisMousewheelZoomModifier.cs │ ├── CustomPointMarker │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CheckedChangeZoomExtentsBehaviour.cs │ │ ├── CustomPointMarker.cs │ │ ├── CustomPointMarker.csproj │ │ ├── CustomPointMarker.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ └── SeriesExtensions.cs │ ├── CustomSeriesMvvm │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CustomSeriesMvvm.csproj │ │ ├── CustomSeriesMvvm.sln │ │ ├── CustomSeriesMvvm.xaml │ │ ├── CustomSeriesMvvm.xaml.cs │ │ ├── CustomSeriesMvvmViewModel.cs │ │ ├── FastLineRenderableSeriesEx.cs │ │ ├── LineRenderableSeriesViewModelEx.cs │ │ └── NuGet.config │ ├── CustomShapeZoomModifier │ │ └── CustomShapeZoomModifier │ │ │ ├── CustomShapeZoomModifier.sln │ │ │ └── CustomShapeZoomModifier │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── CustomShapeZoomModifier.csproj │ │ │ ├── EnumValuesExtension.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── ModifierAxis.cs │ │ │ └── ShapedRubberBandZoomModifier.cs │ ├── DPI_Aware_SciChartSurface │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DpiAwareSciChartSurface.cs │ │ ├── DpiAware_SciChartSurface.csproj │ │ ├── DpiAware_SciChartSurface.sln │ │ ├── ExampleResources.xaml │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── ScatterChartExampleView.xaml │ │ ├── ScatterChartExampleView.xaml.cs │ │ └── app.manifest │ ├── DashedLinesChart │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DashedLinesChart.csproj │ │ ├── DashedLinesChart.sln │ │ ├── DashedLinesChartExampleView.xaml │ │ ├── DashedLinesChartExampleView.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── DigitalAnalyzerPerformanceDemo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Behaviors │ │ │ ├── DigitalAnalyzerScrollBehavior.cs │ │ │ └── FocusedChannelScrollBehavior.cs │ │ ├── Helpers │ │ │ ├── ChannelGenerationHelper.cs │ │ │ ├── ColorHelper.cs │ │ │ ├── PointCountToLabelConverter.cs │ │ │ └── RandomGenerator.cs │ │ ├── LabelProviders │ │ │ └── TimeLabelProvider.cs │ │ ├── NuGet.config │ │ ├── SciChart_DigitalAnalyzerPerformanceDemo.csproj │ │ ├── SciChart_DigitalAnalyzerPerformanceDemo.sln │ │ ├── ViewModels │ │ │ ├── ChannelViewModel.cs │ │ │ └── DigitalAnalyzerExampleViewModel.cs │ │ └── Views │ │ │ ├── DigitalAnalyzerExampleView.xaml │ │ │ ├── DigitalAnalyzerExampleView.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── Resources.xaml │ ├── DoubleAxisAsDateTimeAxis │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DoubleAxisAsDateTimeAxis.csproj │ │ ├── DoubleAxisAsDateTimeAxis.sln │ │ ├── DoubleAxisAsDateTimeAxis.xaml │ │ ├── DoubleAxisAsDateTimeAxis.xaml.cs │ │ ├── NuGet.config │ │ └── OADateLabelProvider.cs │ ├── DoubleScaleDiscontinuousDateTimeAxis │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DoubleScaleDiscontinuousDateTimeAxis.csproj │ │ ├── DoubleScaleDiscontinuousDateTimeAxis.sln │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ └── WeekDaysAxisCalendar.cs │ ├── DynamicVerticallyStackedAxis │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DynamicVerticallyStackedAxis.csproj │ │ ├── DynamicVerticallyStackedAxis.sln │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── EliminatingFlickerInDirectXRenderer │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── EliminatingFlicker.csproj │ │ ├── EliminatingFlicker.sln │ │ ├── EliminatingFlicker.xaml │ │ ├── EliminatingFlicker.xaml.cs │ │ └── NuGet.config │ ├── EventOnZoomExtentsCompleted │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── EventOnZoomExtentsCompleted.csproj │ │ ├── EventOnZoomExtentsCompleted.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ └── ZoomExtentsModifierEx.cs │ ├── HitTestSandbox │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── HitTestGetPoint3D.xaml │ │ ├── HitTestGetPoint3D.xaml.cs │ │ ├── HitTestSandbox.csproj │ │ ├── HitTestSandbox.sln │ │ ├── HitTestToAddAnnotations.xaml │ │ ├── HitTestToAddAnnotations.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── ImplicitStyles │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ImplicitStyles.csproj │ │ ├── ImplicitStyles.sln │ │ ├── ImplicitStyles.xaml │ │ ├── ImplicitStyles.xaml.cs │ │ └── NuGet.config │ ├── KeyboardMoveXozModifier3D │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BoxAnnotation3D.cs │ │ ├── KeyboardMoveXozModifier3D.cs │ │ ├── KeyboardMoveXozModifier3D.csproj │ │ ├── KeyboardMoveXozModifier3D.sln │ │ ├── KeyboardMoveXozModifier3DView.xaml │ │ ├── KeyboardMoveXozModifier3DView.xaml.cs │ │ └── NuGet.config │ ├── LabStyleCharts │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── LabStyleCharts.csproj │ │ ├── LabStyleCharts.sln │ │ ├── LabStyleCharts.xaml │ │ ├── LabStyleCharts.xaml.cs │ │ └── NuGet.config │ ├── LabelIndividualStylingColoring │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ColorGenerator.cs │ │ ├── ColorLabelProvider.cs │ │ ├── LabelIndividualStylingColoring.PNG │ │ ├── LabelIndividualStylingColoring.csproj │ │ ├── LabelIndividualStylingColoring.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── LegendAxisVisibilityCheckbox │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── LegendAxisVisibilityCheckbox.csproj │ │ ├── LegendAxisVisibilityCheckbox.sln │ │ ├── LegendAxisVisibilityCheckbox.xaml │ │ ├── LegendAxisVisibilityCheckbox.xaml.cs │ │ ├── NuGet.config │ │ └── TwoWayBooleanToVisibilityConverter.cs │ ├── Lidar3DPointCloudDemo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AscReader.cs │ │ ├── LIDAR-DSM-2M-TQ38sw │ │ │ └── tq3080_DSM_2M.asc │ │ ├── Lidar3DPointCloudDemo.csproj │ │ ├── Lidar3DPointCloudDemo.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── MarketProfileTradingExample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Converters.cs │ │ ├── DoubleSeries.cs │ │ ├── EnumValueExtensions.cs │ │ ├── ExampleResources.xaml │ │ ├── FlyoutMenuButton.cs │ │ ├── HistoBarPaletteProvider.cs │ │ ├── HistogramBarDemoProjectViewModel.cs │ │ ├── HistogramBarViewportManager.cs │ │ ├── MarketProfileTradingChart.csproj │ │ ├── MarketProfileTradingChart.sln │ │ ├── MarketProfileTradingChart.xaml │ │ ├── MarketProfileTradingChart.xaml.cs │ │ ├── MovingAverage.cs │ │ ├── NuGet.config │ │ └── RandomWalkGenerator.cs │ ├── MirroredYAxis │ │ ├── MvvmVersion │ │ │ ├── NuGet.config │ │ │ ├── mirrored YAxis.sln │ │ │ └── mirrored YAxis │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── MainViewModel.cs │ │ │ │ ├── MainWindow.xaml │ │ │ │ ├── MainWindow.xaml.cs │ │ │ │ └── mirrored YAxis.csproj │ │ └── XamlVersion │ │ │ ├── NuGet.config │ │ │ ├── mirrored YAxis.sln │ │ │ └── mirrored YAxis │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── mirrored YAxis.csproj │ ├── MouseEventsOnAnnotations │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MouseEventsOnAnnotations.csproj │ │ ├── MouseEventsOnAnnotations.sln │ │ └── NuGet.config │ ├── MultiLineDateTimeAxisLabels │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MultiLineDateTimeAxisLabels.csproj │ │ ├── MultiLineDateTimeAxisLabels.sln │ │ ├── MultiLineDateTimeAxisLabels.xaml │ │ ├── MultiLineDateTimeAxisLabels.xaml.cs │ │ └── NuGet.config │ ├── MutipleAppDomainsExample │ │ ├── ChartWindow.xaml │ │ ├── ChartWindow.xaml.cs │ │ ├── ChartWindowLoader.cs │ │ ├── DataManager.cs │ │ ├── MutipleAppDomainsExample.csproj │ │ ├── MutipleAppDomainsExample.sln │ │ ├── NuGet.config │ │ └── Program.cs │ ├── MutipleUIThreadExample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DataManager.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MutipleUIThreadExample.csproj │ │ ├── MutipleUIThreadExample.sln │ │ ├── NuGet.config │ │ ├── SecondWindow.xaml │ │ └── SecondWindow.xaml.cs │ ├── OffScreenExportExample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── OffScreenExportExample.csproj │ │ ├── OffScreenExportExample.sln │ │ ├── OffScreenExportView.xaml │ │ ├── OffScreenExportView.xaml.cs │ │ └── TextToBooleanConverter.cs │ ├── OilAndGasExample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Behaviors │ │ │ ├── SurfaceStyleBehaviour.cs │ │ │ └── SurfaceToViewModelBehavior.cs │ │ ├── Common │ │ │ ├── Chart3DViewModel.cs │ │ │ ├── ChartViewModel.cs │ │ │ ├── IChart3DFactory.cs │ │ │ └── IChartFactory.cs │ │ ├── GridCharts │ │ │ ├── ChartFactory │ │ │ │ ├── MountainChartFactory.cs │ │ │ │ └── ScatterChartFactory.cs │ │ │ ├── Data │ │ │ │ ├── Grid-1.csv.gz │ │ │ │ ├── Grid-2.csv.gz │ │ │ │ ├── Grid-3.csv.gz │ │ │ │ ├── Grid-4.csv.gz │ │ │ │ ├── Grid-5.csv.gz │ │ │ │ ├── Grid-6.csv.gz │ │ │ │ ├── Grid-7.csv.gz │ │ │ │ ├── Grid-8.csv.gz │ │ │ │ └── Grid-9.csv.gz │ │ │ ├── GridLegend.xaml │ │ │ ├── GridLegend.xaml.cs │ │ │ ├── GridPanel.xaml │ │ │ ├── GridPanel.xaml.cs │ │ │ ├── GridPanelResources.xaml │ │ │ └── GridPanelViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── OilAndGasExample.csproj │ │ ├── OilAndGasExample.sln │ │ ├── ThreeDCharts │ │ │ ├── Chart3DPanel.xaml │ │ │ ├── Chart3DPanel.xaml.cs │ │ │ ├── Chart3DPanelResources.xaml │ │ │ ├── Chart3DPanelViewModel.cs │ │ │ ├── ChartFactory │ │ │ │ └── ScatterChart3DFactory.cs │ │ │ └── Data │ │ │ │ └── Scatter-XYZ.csv.gz │ │ └── VerticalCharts │ │ │ ├── AxisLegend.cs │ │ │ ├── AxisLegendResources.xaml │ │ │ ├── ChartFactory │ │ │ ├── DensityChartFactory.cs │ │ │ ├── PoreSpaceChartFactory.cs │ │ │ ├── ResistivityChartFactory.cs │ │ │ ├── ShaleChartFactory.cs │ │ │ ├── SonicChartFactory.cs │ │ │ └── TextureChartFactory.cs │ │ │ ├── Data │ │ │ ├── Density.csv.gz │ │ │ ├── PoreSpace.csv.gz │ │ │ ├── Resistivity.csv.gz │ │ │ ├── Shale.csv.gz │ │ │ ├── Sonic.csv.gz │ │ │ └── Texture.csv.gz │ │ │ ├── RangeFillPaletteProvider.cs │ │ │ ├── VerticalPanel.xaml │ │ │ ├── VerticalPanel.xaml.cs │ │ │ ├── VerticalPanelResources.xaml │ │ │ └── VerticalPanelViewModel.cs │ ├── Plane3DAnnotation │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── Plane3DAnnotation.csproj │ │ ├── Plane3DAnnotation.sln │ │ ├── Plane3DAnnotation.xaml │ │ ├── Plane3DAnnotation.xaml.cs │ │ └── VerticalPlaneGeometry.cs │ ├── Readme.md │ ├── ResamplingOfGridDataSeries3D │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── ResamplingOfGridDataSeries3D.csproj │ │ ├── ResamplingOfGridDataSeries3D.sln │ │ ├── ResamplingOfGridDataSeries3D.xaml │ │ └── ResamplingOfGridDataSeries3D.xaml.cs │ ├── RotatedAxisLabels │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── RotatedAxisLabels.csproj │ │ ├── RotatedAxisLabels.sln │ │ ├── RotatedAxisLabels.xaml │ │ └── RotatedAxisLabels.xaml.cs │ ├── SciChartSurfaceMeshSelection │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── SciChartSurfaceMeshSelection.csproj │ │ ├── SciChartSurfaceMeshSelection.sln │ │ ├── SurfaceMeshMetadataPaletteProvider.cs │ │ ├── SurfaceMeshSelectionModifier.cs │ │ └── SurfaceMeshVertexInfo.cs │ ├── ScrollbarAboveAxis │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── ScrollbarAboveAxis.csproj │ │ ├── ScrollbarAboveAxis.sln │ │ ├── ScrollbarAboveAxis.xaml │ │ └── ScrollbarAboveAxis.xaml.cs │ ├── ScrollbarMvvmAxis │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── NumericAxisViewModelWithScrollbar.cs │ │ ├── ScrollbarMvvmAxis.csproj │ │ ├── ScrollbarMvvmAxis.sln │ │ ├── ScrollbarMvvmAxis.xaml │ │ ├── ScrollbarMvvmAxis.xaml.cs │ │ └── ScrollbarMvvmAxisViewModel.cs │ ├── SelectSeriesOnHover │ │ ├── SelectSeriesOnHover.sln │ │ └── SelectSeriesOnHover │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── HoverSelectionModifier.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── NuGet.config │ │ │ └── SelectSeriesOnHover.csproj │ ├── SimpleLineChart_VB │ │ ├── SimpleLineChart_VB.sln │ │ └── SimpleLineChart_VB │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ └── SimpleLineChart_VB.vbproj │ ├── SlimLineRenderableSeries │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── SlimLineDrawingProvider.cs │ │ ├── SlimLineHitTestProvider.cs │ │ ├── SlimLineRenderableSeries.cs │ │ ├── SlimLineRenderableSeriesExample.csproj │ │ └── SlimLineRenderableSeriesExample.sln │ ├── State Series Example │ │ ├── Method1 Chartception │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── MainWindowViewModel.cs │ │ │ ├── NuGet.config │ │ │ ├── State Series Example.csproj │ │ │ ├── State Series Example.sln │ │ │ └── StatePaletteProvider.cs │ │ ├── Method2 Axis Panel Template │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── MainWindowViewModel.cs │ │ │ ├── NuGet.config │ │ │ ├── State Series Example.csproj │ │ │ ├── State Series Example.sln │ │ │ └── StatePaletteProvider.cs │ │ └── Method3 Custom Series │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── MainWindowViewModel.cs │ │ │ ├── NuGet.config │ │ │ ├── State Series Example.csproj │ │ │ ├── State Series Example.sln │ │ │ ├── StatePaletteProvider.cs │ │ │ └── StateRenderableSeries.cs │ ├── StockChartLogAxis │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── StockChartLogAxis.csproj │ │ ├── StockChartLogAxis.sln │ │ ├── StockChartLogAxis.xaml │ │ ├── StockChartLogAxis.xaml.cs │ │ ├── StockChartLogAxisStyles.xaml │ │ ├── StockChartLogAxisViewModel.cs │ │ └── SwitchAxisTypeBehavior.cs │ ├── StringsOnXAxis │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── StringsOnXAxis.csproj │ │ ├── StringsOnXAxis.sln │ │ ├── StringsOnXAxis.xaml │ │ └── StringsOnXAxis.xaml.cs │ ├── StripChart │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── RelativeTimeLabelProvider.cs │ │ ├── ScrollingStripChart.csproj │ │ ├── ScrollingStripChart.sln │ │ ├── ScrollingStripChart.xaml │ │ └── ScrollingStripChart.xaml.cs │ ├── StrokeDashArrayPointMarkers │ │ ├── StrokeDashArrayPointMarkers.sln │ │ └── StrokeDashArrayPointMarkers │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── NuGet.config │ │ │ └── StrokeDashArrayPointMarkers.csproj │ ├── SweepingEcgSeries │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DimTracePaletteProvider.cs │ │ ├── ModuloLabelProvider.cs │ │ ├── NuGet.config │ │ ├── SweepingEcg.csproj │ │ ├── SweepingEcg.sln │ │ ├── SweepingEcg.xaml │ │ ├── SweepingEcg.xaml.cs │ │ └── Waveform.csv │ ├── TextAnnotationDynamicSize │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── TextAnnotationDynamicSize.csproj │ │ ├── TextAnnotationDynamicSize.sln │ │ └── TextAnnotationEx.cs │ ├── ThresholdedLineSeries │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DragThresholdMvvm.csproj │ │ ├── DragThresholdMvvm.sln │ │ ├── DragThresholdMvvm.xaml │ │ ├── DragThresholdMvvm.xaml.cs │ │ ├── DragThresholdMvvmViewModel.cs │ │ └── NuGet.config │ ├── TicklinesUniformGrid │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MillimeterDivisionsTickProvider.cs │ │ ├── NuGet.config │ │ ├── TicklinesUniformGrid.csproj │ │ ├── TicklinesUniformGrid.sln │ │ ├── TicklinesUniformGrid.xaml │ │ └── TicklinesUniformGrid.xaml.cs │ ├── TimelineControl │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ColorExtensions.cs │ │ ├── NuGet.config │ │ ├── TimeLineControl.csproj │ │ ├── TimeLineControl.sln │ │ ├── TimeLineControl.xaml │ │ ├── TimeLineControl.xaml.cs │ │ └── TimelineRenderableSeries.cs │ ├── TouchScreenModifiers │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CustomTouchModifier.cs │ │ ├── NuGet.config │ │ ├── TouchInputSandbox.csproj │ │ ├── TouchInputSandbox.sln │ │ ├── TouchInputSandbox.xaml │ │ ├── TouchInputSandbox.xaml.cs │ │ └── TouchInputSandboxViewModel.cs │ ├── TruePolar │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── TruePolarChart.csproj │ │ ├── TruePolarChart.sln │ │ ├── TruePolarChart.xaml │ │ └── TruePolarChart.xaml.cs │ ├── UsingRenderContextAPI │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Resources │ │ │ └── TestImage.jpg │ │ ├── UsingRenderContextApi.csproj │ │ └── UsingRenderContextApi.sln │ ├── VS2022_Net60_Boilerplate │ │ ├── VS2022_Net60_Boilerplate.sln │ │ └── VS2022_Net60_Boilerplate │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── VS2022_Net60_Boilerplate.csproj │ ├── VerticalSliceModifierMvvm │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── VerticalSliceModifierMvvm.csproj │ │ └── VerticalSliceModifierMvvm.sln │ ├── VisualXcceleratorEnableTest │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── VisualXcceleratorEnableTest.csproj │ │ └── VisualXcceleratorEnableTest.sln │ ├── YAxisSameZeroLine │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── YAxisSameZeroLine.csproj │ │ ├── YAxisSameZeroLine.sln │ │ ├── YAxisSameZeroLine.xaml │ │ └── YAxisSameZeroLine.xaml.cs │ ├── ZoomExtentsAfterMvvmSeriesChanges │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── ZoomExtentsAfterMvvmSeriesChanged.csproj │ │ ├── ZoomExtentsAfterMvvmSeriesChanged.sln │ │ ├── ZoomExtentsAfterMvvmSeriesChanged.xaml │ │ ├── ZoomExtentsAfterMvvmSeriesChanged.xaml.cs │ │ └── ZoomExtentsAfterMvvmSeriesChangedViewModel.cs │ └── ZoomExtentsOnVisibilityChanged │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NuGet.config │ │ ├── ZoomExtentsOnVisibilityChanged.csproj │ │ ├── ZoomExtentsOnVisibilityChanged.sln │ │ ├── ZoomExtentsOnVisibilityChanged.xaml │ │ ├── ZoomExtentsOnVisibilityChanged.xaml.cs │ │ ├── ZoomExtentsOnVisibilityChangedViewModel.cs │ │ └── ZoomOnVisibilityBehaviour.cs ├── DirectXDeploymentTestApp │ ├── DesignerView showing Software Renderer.png │ ├── NuGet PackageReference version │ │ ├── DirectXDeploymentTestApp.sln │ │ ├── DirectXDeploymentTestApp │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── DirectXDeploymentTestApp.csproj │ │ │ ├── MainWindow.xaml │ │ │ └── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── NuGet Packages.config version │ │ ├── DirectXDeploymentTestApp.sln │ │ ├── DirectXDeploymentTestApp │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── DirectXDeploymentTestApp.csproj │ │ │ ├── MainWindow.xaml │ │ │ └── MainWindow.xaml.cs │ │ └── NuGet.config │ ├── Readme.md │ └── Runtime View showing DirectX Renderer.png ├── Fifo100MillionPointsDemo │ ├── Fifo100MillionPointsDemo.sln │ ├── Fifo100MillionPointsDemo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Fifo100MillionPointsDemo.csproj │ │ ├── HelperClasses │ │ │ ├── Colors.cs │ │ │ ├── NoLockTimer.cs │ │ │ ├── ObservableCollectionExtensions.cs │ │ │ ├── Rand.cs │ │ │ └── SysInfo.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── PointCountViewModel.cs │ │ └── Resources │ │ │ ├── Brushes.xaml │ │ │ ├── ComboBox.Common.xaml │ │ │ ├── ComboBox.Wpf.xaml │ │ │ └── Common.xaml │ ├── NuGet.config │ ├── Readme.md │ └── fifo-1-billion-points-demo.PNG ├── LicensingTestApp │ ├── Readme.md │ ├── WinForms │ │ └── WindowsFormsApplication1 │ │ │ ├── WindowsFormsApplication1.sln │ │ │ └── WindowsFormsApplication1 │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ └── WindowsFormsApplication1.csproj │ ├── Wpf - .NET 6.0 │ │ ├── Licensing Test App net6.sln │ │ └── WpfApplication1 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Licensing Test App net6.csproj │ │ │ ├── Licensing Test App.csproj │ │ │ ├── MainWindow.xaml │ │ │ └── MainWindow.xaml.cs │ ├── Wpf - AsyncLicenseLoading │ │ ├── Readme.md │ │ ├── WpfApplication1.sln │ │ └── WpfApplication1 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Licensing Test App.csproj │ │ │ ├── LoadingContent.xaml │ │ │ ├── LoadingContent.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── SciChartContent.xaml │ │ │ └── SciChartContent.xaml.cs │ ├── Wpf │ │ ├── WpfApplication1.sln │ │ ├── WpfApplication1.sln.GhostDoc.xml │ │ └── WpfApplication1 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Licensing Test App.csproj │ │ │ ├── MainWindow.xaml │ │ │ └── MainWindow.xaml.cs │ └── video-thumb.jpg └── WPFChartPerformanceBenchmark │ ├── ChartProviderSciChart │ ├── ChartProviderSciChart_v1.7.2.csproj │ ├── ChartingProviderSciChart_v1_7_2.cs │ ├── FifoLineSeriesSpeedTest.xaml │ ├── FifoLineSeriesSpeedTest.xaml.cs │ ├── LineSeriesAppendingSpeedTest.xaml │ ├── LineSeriesAppendingSpeedTest.xaml.cs │ ├── LineSeriesSource.cs │ ├── Load500x500SeriesRefreshTest.xaml │ ├── Load500x500SeriesRefreshTest.xaml.cs │ ├── ScatterSeriesSpeedTest.xaml │ ├── ScatterSeriesSpeedTest.xaml.cs │ └── depends │ │ └── Abt.Controls.SciChart.Wpf.dll │ ├── ChartProviderSciChart_Trunk │ ├── ChartProviderSciChart_Trunk.csproj │ ├── ChartingProviderSciChart_Trunk.cs │ ├── ExtremeScatterSeriesSpeedTests.xaml │ ├── ExtremeScatterSeriesSpeedTests.xaml.cs │ ├── FifoLineSeriesSpeedTest.xaml │ ├── FifoLineSeriesSpeedTest.xaml.cs │ ├── LineSeriesAppendingSpeedTest.xaml │ ├── LineSeriesAppendingSpeedTest.xaml.cs │ ├── LineSeriesSource.cs │ ├── Load500x500SeriesRefreshTest.xaml │ ├── Load500x500SeriesRefreshTest.xaml.cs │ ├── PublicPrivateKeyFile.snk │ ├── ScatterSeriesSpeedTest.xaml │ └── ScatterSeriesSpeedTest.xaml.cs │ ├── ChartProviders.Common │ ├── ChartProviders.Common.csproj │ ├── DataProviders │ │ ├── BrownianMotionPointsGenerator.cs │ │ ├── CorrelatedDataPointsGenerator.cs │ │ ├── MovingAverage.cs │ │ ├── RandomLinesGenerator.cs │ │ ├── RandomPointsGenerator.cs │ │ ├── RandomWalkGenerator.cs │ │ └── XyData.cs │ ├── Extensions │ │ └── RandomExtensions.cs │ ├── IChartingProvider.cs │ ├── ISpeedTest.cs │ ├── ITestCase.cs │ ├── LineAppendTestParameters.cs │ ├── PublicPrivateKeyFile.snk │ ├── TestCase.cs │ ├── TestParameters.cs │ └── TestRunner │ │ ├── CompositionTestRunner.cs │ │ ├── DispatcherTimerRunner.cs │ │ ├── SciChartTestRunner.cs │ │ └── TimerRunner.cs │ ├── NuGet.config │ ├── Readme.md │ ├── WPFChartPerformanceBenchmark-SciChart_DirectX_vs_Software.sln │ ├── WPFChartPerformanceBenchmark │ ├── App.PortableExecutableHelper.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Extensions │ │ └── DataGridExtension.cs │ ├── HeatConverter.cs │ ├── HeatProvider.cs │ ├── MainViewModel.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── TestResult.cs │ ├── TestSetup.cs │ ├── ViewModelBase.cs │ └── WPFChartPerformanceBenchmark.csproj │ └── WPFChartPerformanceBenchmark_SC_DirectX_vs_Software │ ├── App.xaml │ ├── App.xaml.cs │ ├── TestSetup.cs │ ├── WPFChartPerformanceBenchmark - DirectX vs Software.csproj │ ├── sharpdx_direct3d11_1_effects_x64.dll │ └── sharpdx_direct3d11_1_effects_x86.dll ├── Tutorials ├── Code-Behind │ ├── Tutorial 02 Creating a SciChartSurface │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 02 Creating a SciChartSurface.csproj │ │ └── Tutorial 02 Creating a SciChartSurface.sln │ ├── Tutorial 03 Adding Series to a Chart │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 03 Adding Series to a Chart.csproj │ │ └── Tutorial 03 Adding Series to a Chart.sln │ ├── Tutorial 04 Adding Zooming, Panning │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 04 Adding Zooming, Panning.csproj │ │ └── Tutorial 04 Adding Zooming, Panning.sln │ ├── Tutorial 05 Adding Tooltips, Legends │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 05 Adding Tooltips, Legends.csproj │ │ └── Tutorial 05 Adding Tooltips, Legends.sln │ ├── Tutorial 06 Realtime Updates │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── ScrollingViewportManager.cs │ │ ├── Tutorial 06 Realtime Updates.csproj │ │ └── Tutorial 06 Realtime Updates.sln │ ├── Tutorial 07 Adding Annotations │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── InfoAnnotation.xaml │ │ ├── InfoAnnotation.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── ScrollingViewportManager.cs │ │ ├── Tutorial 07 Adding Annotations.csproj │ │ └── Tutorial 07 Adding Annotations.sln │ ├── Tutorial 08 Multiple Axis │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── InfoAnnotation.xaml │ │ ├── InfoAnnotation.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── ScrollingViewportManager.cs │ │ ├── Tutorial 08 Multiple Axis.csproj │ │ └── Tutorial 08 Multiple Axis.sln │ └── Tutorial 09 Linking Multiple Charts │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── InfoAnnotation.xaml │ │ ├── InfoAnnotation.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── ScrollingViewportManager.cs │ │ ├── Tutorial 09 Linking Multiple Charts.csproj │ │ └── Tutorial 09 Linking Multiple Charts.sln ├── MVVM │ ├── Tutorial 02b Creating a SciChartSurface with MVVM │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 02b Creating a SciChartSurface with MVVM.csproj │ │ └── Tutorial 02b Creating a SciChartSurface with MVVM.sln │ ├── Tutorial 03b Adding Series to a Chart with MVVM │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 03b Adding Series to a Chart with MVVM.csproj │ │ └── Tutorial 03b Adding Series to a Chart with MVVM.sln │ ├── Tutorial 04b Adding Zooming Panning with MVVM │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 04b Adding Zooming Panning with MVVM.csproj │ │ └── Tutorial 04b Adding Zooming Panning with MVVM.sln │ ├── Tutorial 05b Adding Tooltips, Legends with MVVM │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 05b Adding Tooltips, Legends with MVVM.csproj │ │ └── Tutorial 05b Adding Tooltips, Legends with MVVM.sln │ ├── Tutorial 06b Adding Realtime Updates with MVVM │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AutoRangeViewportManager.cs │ │ ├── DummyDataProvider.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 06b Adding Realtime Updates with MVVM.csproj │ │ └── Tutorial 06b Adding Realtime Updates with MVVM.sln │ ├── Tutorial 07b Adding Annotations with MVVM │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AutoRangeViewportManager.cs │ │ ├── DummyDataProvider.cs │ │ ├── InfoAnnotation.xaml │ │ ├── InfoAnnotation.xaml.cs │ │ ├── InfoAnnotationViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 07b Adding Annotations with MVVM.csproj │ │ └── Tutorial 07b Adding Annotations with MVVM.sln │ ├── Tutorial 08b Adding Multiple Axis with MVVM │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AutoRangeViewportManager.cs │ │ ├── DummyDataProvider.cs │ │ ├── InfoAnnotation.xaml │ │ ├── InfoAnnotation.xaml.cs │ │ ├── InfoAnnotationViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 08b Adding Multiple Axis with MVVM.csproj │ │ └── Tutorial 08b Adding Multiple Axis with MVVM.sln │ └── Tutorial 09b Linking Multiple Charts with MVVM │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AutoRangeViewportManager.cs │ │ ├── ChartViewModel.cs │ │ ├── DummyDataProvider.cs │ │ ├── InfoAnnotation.xaml │ │ ├── InfoAnnotation.xaml.cs │ │ ├── InfoAnnotationViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NuGet.config │ │ ├── Tutorial 09b Linking Multiple Charts with MVVM.csproj │ │ └── Tutorial 09b Linking Multiple Charts with MVVM.sln └── SciChart 3D │ ├── Tutorial 02-3D Creating a SciChart3DSurface │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NuGet.config │ ├── Tutorial 02 Creating a SciChart3DSurface.csproj │ └── Tutorial 02 Creating a SciChart3DSurface.sln │ ├── Tutorial 03-3D Adding Series to a 3D Chart │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NuGet.config │ ├── Tutorial 03 Adding Series to a 3D Chart.csproj │ └── Tutorial 03 Adding Series to a 3D Chart.sln │ └── Tutorial 04-3D Adding Zooming, Panning Behavior │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NuGet.config │ ├── Tutorial 04 Adding Zooming Panning Behavior.csproj │ └── Tutorial 04 Adding Zooming Panning Behavior.sln └── lastbuild.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | *.user 3 | _ReSharper.* 4 | bin 5 | obj 6 | packages 7 | *.vs 8 | *.opendb 9 | *.db 10 | Build/ 11 | Examples/lastbuild.txt -------------------------------------------------------------------------------- /Examples/.nuget/NuGet.Config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Examples/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Examples/.nuget/NuGet.exe.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildThisFileDirectory) 5 | 6 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/AnnotationsAreEasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/AnnotationsAreEasy.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/CompositeAnnotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/CompositeAnnotations.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/CreateAnnotationsDynamically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/CreateAnnotationsDynamically.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/DatapointMarkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/DatapointMarkers.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/DragHorizontalThreshold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/DragHorizontalThreshold.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/InteractionWithAnnotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/InteractionWithAnnotations.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/PolarChartAnnotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/PolarChartAnnotations.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/TradeAnnotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/TradeAnnotations.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/TradeMarkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ChartAnnotations/TradeMarkers.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateGaugeChart/UsingDonutChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateGaugeChart/UsingDonutChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateGaugeChart/UsingPieChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateGaugeChart/UsingPieChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/BandSeriesChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/BandSeriesChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/BoxPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/BoxPlot.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/BubbleChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/BubbleChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/CandlestickChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/CandlestickChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/ColumnChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/ColumnChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/DigitalBandSeriesChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/DigitalBandSeriesChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/DigitalLineChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/DigitalLineChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/DigitalMountainChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/DigitalMountainChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/ImpulseStemChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/ImpulseStemChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/LineChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/LineChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/MountainChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/MountainChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/PolarChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/PolarChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/ScatterChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CreateSimpleChart/ScatterChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CustomCharts/SplineScatterChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/CustomCharts/SplineScatterChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ExportCharts/ExportChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ExportCharts/ExportChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Filters/FiltersApiExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Filters/FiltersApiExample.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/HeatmapAndPaletteProvider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/HeatmapAndPaletteProvider.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/HeatmapMetaData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/HeatmapMetaData.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/HeatmapRealTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/HeatmapRealTime.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/HeatmapWithText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/HeatmapWithText.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/NonUniformHeatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Heatmaps/NonUniformHeatmap.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Legends/LegendsAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/Legends/LegendsAPI.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/AxisAnnotationBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/AxisAnnotationBinding.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/BindMultipleCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/BindMultipleCharts.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/BindSciChartToData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/BindSciChartToData.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/ManipulateSeriesMvvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/ManipulateSeriesMvvm.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/SeriesBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/SeriesBinding.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/SyncCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MVVMExamples/SyncCharts.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ManipulateSeries/AddRemoveSeries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ManipulateSeries/AddRemoveSeries.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ManipulateSeries/ChangeRenderableSeriesType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ManipulateSeries/ChangeRenderableSeriesType.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ManipulateSeries/ChangeSeriesType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ManipulateSeries/ChangeSeriesType.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/CategoryVsValueAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/CategoryVsValueAxis.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/CentralXYAxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/CentralXYAxes.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/LogarithmicAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/LogarithmicAxis.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/ModifyAxisProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/ModifyAxisProperties.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/MultipleXAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/MultipleXAxis.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/MultipleYAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/MultipleYAxis.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/PolarChartManyAxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/PolarChartManyAxes.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/SecondaryYAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/SecondaryYAxis.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/SwitchAxisTypeRuntime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/SwitchAxisTypeRuntime.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/VerticalCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/VerticalCharts.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/VerticallyStackedYAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ModifyAxisBehavior/VerticallyStackedYAxis.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/CandlestickAndLines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/CandlestickAndLines.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/ContoursWithHeatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/ContoursWithHeatmap.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/DashboardPolarCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/DashboardPolarCharts.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/DashboardStyleCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/DashboardStyleCharts.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/ErrorBars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/ErrorBars.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/FanChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/FanChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/GanttChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/GanttChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/GapsInSeries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/GapsInSeries.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/LineAndScatterChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/LineAndScatterChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/StackedBarChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/StackedBarChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/StackedColumnChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/StackedColumnChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/StackedColumnSideBySide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/StackedColumnSideBySide.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/StackedMountainChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/MultiseriesCharts/StackedMountainChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/RadarCharts/RadarChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/RadarCharts/RadarChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/RadarCharts/RadarChartCustomization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/RadarCharts/RadarChartCustomization.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StockCharts/MultiPaneStockChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StockCharts/MultiPaneStockChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StockCharts/RealtimeTickingCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StockCharts/RealtimeTickingCharts.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StockCharts/UsingSciStockChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StockCharts/UsingSciStockChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/CustomTheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/CustomTheme.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/DashedLineStyling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/DashedLineStyling.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/UseHQRendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/UseHQRendering.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/UsingPaletteProvider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/UsingPaletteProvider.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/UsingPointMarkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/UsingPointMarkers.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/UsingThemeManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/UsingThemeManager.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/Xaml Styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/StylingTheming/Xaml Styling.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/SyncCharts/SyncCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/SyncCharts/SyncCharts.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TernaryCharts/ErrorBarTernaryChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TernaryCharts/ErrorBarTernaryChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TernaryCharts/PolygonTernaryChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TernaryCharts/PolygonTernaryChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TernaryCharts/ScatterTernaryChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TernaryCharts/ScatterTernaryChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/CustomPointMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/CustomPointMarker.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/HitTestAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/HitTestAPI.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/PointMarkersSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/PointMarkersSelection.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/SeriesSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/SeriesSelection.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/SeriesWithMetadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/SeriesWithMetadata.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/TooltipsAndModifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/TooltipsAndModifiers.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/Using TooltipModifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/Using TooltipModifier.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/UsingCursorModifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/UsingCursorModifier.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/UsingRolloverModifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/UsingRolloverModifier.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/UsingVerticalSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/TooltipsAndHitTests/UsingVerticalSlice.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomHistory/UndoRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomHistory/UndoRedo.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomHistory/ZoomHistoryMVVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomHistory/ZoomHistoryMVVM.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/CustomOverviewControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/CustomOverviewControl.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/DragAreaToZoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/DragAreaToZoom.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/DragAxisToScale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/DragAxisToScale.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/MousewheelZoomScroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/MousewheelZoomScroll.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/OverviewControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/OverviewControl.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/PanOnMouseDrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/PanOnMouseDrag.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/PanYXDirection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/PanYXDirection.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/PerAxisScrollbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts2D/ZoomPan/PerAxisScrollbars.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/ClosedSurfaceMesh3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/ClosedSurfaceMesh3D.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleBubble3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleBubble3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleCylindroid3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleCylindroid3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleEllipsoid3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleEllipsoid3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimplePointCloud3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimplePointCloud3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimplePolar3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimplePolar3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleScatter3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleScatter3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleUniformMeshCloud3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleUniformMeshCloud3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleWaterfall3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/SimpleWaterfall3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/UniformColumn3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/UniformColumn3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/UniformOrthogonalHeatmap3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/BasicChartTypes/UniformOrthogonalHeatmap3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/Customize/AddGeometryto3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/Customize/AddGeometryto3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/Customize/AddObjectto3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/Customize/AddObjectto3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/ModifyAxis/AxisBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/ModifyAxis/AxisBinding.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/ModifyAxis/LogarihtmicAxis3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/ModifyAxis/LogarihtmicAxis3D.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/StyleChart/SimpleThemManager3DChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/StyleChart/SimpleThemManager3DChart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/SurfaceMesh/FloorCeilingSurfaceMesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/SurfaceMesh/FloorCeilingSurfaceMesh.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/SurfaceMesh/NonUniformSurfaceMesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/SurfaceMesh/NonUniformSurfaceMesh.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/SurfaceMesh/WithContoursSurfaceMesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/Charts3D/SurfaceMesh/WithContoursSurfaceMesh.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/FinancialCharts/AggregationFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/FinancialCharts/AggregationFilters.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/FinancialCharts/SciChartTraderDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/FinancialCharts/SciChartTraderDemo.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/MedicalCharts/ECGMonitorDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/MedicalCharts/ECGMonitorDemo.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/MedicalCharts/VitalSignsMonitorDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/MedicalCharts/VitalSignsMonitorDemo.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/ParallelCoordinatePlot/ParallelCoordinatePlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/ParallelCoordinatePlot/ParallelCoordinatePlot.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/PerformanceDemos/FastPalettedScatterCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/PerformanceDemos/FastPalettedScatterCharts.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/PerformanceDemos/Fifo1BillionPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/PerformanceDemos/Fifo1BillionPoints.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/PerformanceDemos/ScatterChartPerformanceDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/PerformanceDemos/ScatterChartPerformanceDemo.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/ScientificCharts/LIDARPointCloud3DDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo.SmokeTests/Resources/FeaturedApps/ScientificCharts/LIDARPointCloud3DDemo.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/AutoCompleteBoxCompatible.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace SciChart.Examples.Demo.Common 4 | { 5 | public class AutoCompleteBoxCompatible: AutoCompleteBox 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/WrapPanelCompatible.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace SciChart.Examples.Demo.Common 4 | { 5 | public class WrapPanelCompatible: WrapPanel 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/CustomListBox.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Controls; 3 | 4 | namespace SciChart.Examples.Demo.Controls 5 | { 6 | public class CustomListBox : ListBox 7 | { 8 | protected override DependencyObject GetContainerForItemOverride() 9 | { 10 | return new CustomListBoxItem(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/Tile/TileState.cs: -------------------------------------------------------------------------------- 1 | namespace SciChart.Examples.Demo.Controls.Tile 2 | { 3 | public enum TileState 4 | { 5 | Main, 6 | Details, 7 | } 8 | } -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Grouping/IGrouping.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Collections.ObjectModel; 4 | using SciChart.Examples.Demo.ViewModels; 5 | 6 | namespace SciChart.Examples.Demo.Helpers.Grouping 7 | { 8 | public interface IGrouping 9 | { 10 | GroupingMode GroupingMode { get; set; } 11 | ObservableCollection GroupingPredicate(IDictionary examples); 12 | } 13 | } -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/ISelectable.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Input; 2 | 3 | namespace SciChart.Examples.Demo.Helpers 4 | { 5 | public interface ISelectable 6 | { 7 | ICommand SelectCommand { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/ProjectExport/Templates/MainWindow.xaml.c.txt: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChartExport 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/ProjectExport/Templates/MainWindow.xaml.txt: -------------------------------------------------------------------------------- 1 |  5 | 6 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Fonts/Marlett.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo/Resources/Fonts/Marlett.ttf -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Fonts/NEUROPOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo/Resources/Fonts/NEUROPOL.ttf -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/SciChartIconWin256x256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo/SciChartIconWin256x256.ico -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/EverythingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace SciChart.Examples.Demo.Views 4 | { 5 | /// 6 | /// Interaction logic for EverythingView.xaml 7 | /// 8 | public partial class EverythingView : UserControl 9 | { 10 | public EverythingView() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/FeedbackView.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace SciChart.Examples.Demo.Views 4 | { 5 | public partial class FeedbackView : UserControl 6 | { 7 | public FeedbackView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/HomeView.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | using SciChart.UI.Bootstrap; 3 | using Unity; 4 | 5 | namespace SciChart.Examples.Demo.Views 6 | { 7 | public partial class HomeView : UserControl 8 | { 9 | public HomeView() 10 | { 11 | InitializeComponent(); 12 | 13 | DataContext = ServiceLocator.Container.Resolve(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SearchView.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace SciChart.Examples.Demo.Views 4 | { 5 | /// 6 | /// Interaction logic for SearchView.xaml 7 | /// 8 | public partial class SearchView : UserControl 9 | { 10 | public SearchView() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SourceCodeView.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace SciChart.Examples.Demo.Views 4 | { 5 | /// 6 | /// Interaction logic for SourceCodeView.xaml 7 | /// 8 | public partial class SourceCodeView : UserControl 9 | { 10 | public SourceCodeView() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/sharpdx_direct3d11_1_effects_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo/sharpdx_direct3d11_1_effects_x64.dll -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/sharpdx_direct3d11_1_effects_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.Demo/sharpdx_direct3d11_1_effects_x86.dll -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Common/BaseViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/CollapsableGridSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Common/CollapsableGridSplitter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/FlyoutMenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Common/FlyoutMenuButton.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/Instrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Common/Instrument.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/SciChartPolarInteractionToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Common/SciChartPolarInteractionToolbar.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Controls/CoverFlow/CoverFlowEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Controls/CoverFlow/CoverFlowEventArgs.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Controls/CoverFlow/CoverFlowItemControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Controls/CoverFlow/CoverFlowItemControl.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Data/DataManager.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/MarketDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Data/MarketDataService.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/MovingAverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Data/MovingAverage.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/PriceBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Data/PriceBar.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/PriceSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Data/PriceSeries.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/RandomPricesDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Data/RandomPricesDataSource.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/TradeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Data/TradeData.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/AcousticPlots.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/AcousticPlots.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/EURUSD_Daily.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/EURUSD_Daily.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/EURUSD_Hourly.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/EURUSD_Hourly.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/EURUSD_Minute5.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/EURUSD_Minute5.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/INDU_Daily.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/INDU_Daily.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/LIDARtq3080DSM2M.asc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/LIDARtq3080DSM2M.asc.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/PopulationData.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/PopulationData.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/TickData.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/TickData.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/TradeTicks.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/TradeTicks.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/VitalSignsTrace.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/VitalSignsTrace.csv.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/Waveform.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/Waveform.txt.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Data/WeatherData.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Data/WeatherData.txt.gz -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Images/SciChartLogo_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Images/SciChartLogo_Dark.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Images/SciChartLogo_Navy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Images/SciChartLogo_Navy.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Images/globe_heightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Images/globe_heightmap.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Objects/BlackWoodTexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Objects/BlackWoodTexture.jpg -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Resources/Objects/WhiteWoodTexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples.ExternalDependencies/Resources/Objects/WhiteWoodTexture.jpg -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/Charts3D/ZoomAndPanA3DChart/ZAxisUp3D/ContinentsLegend.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Media; 2 | 3 | namespace SciChart.Examples.Examples.Charts3D.ZoomAndPanA3DChart.ZAxisUp3D 4 | { 5 | public class ContinentsLegend 6 | { 7 | public string Continent { get; set; } 8 | 9 | public Color Color { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/CreateMultiseriesChart/DashboardStyleCharts/ChartTypeViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/CreateMultiseriesChart/DashboardStyleCharts/ChartTypeViewModelFactory.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/CreateMultiseriesChart/DashboardStyleCharts/SpacingModeToMaximumSpacingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/CreateMultiseriesChart/DashboardStyleCharts/SpacingModeToMaximumSpacingConverter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/CreateMultiseriesChart/GanttChart/GanttChartView.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace SciChart.Examples.Examples.CreateMultiseriesChart.GanttChart 4 | { 5 | public partial class GanttChartView : UserControl 6 | { 7 | public GanttChartView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/CreateMultiseriesChart/YearsLabelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/CreateMultiseriesChart/YearsLabelProvider.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/CreateRealtimeChart/BrownianMotion.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/CreateRealtimeChart/EEGChannelsDemo/EEGChannelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/CreateRealtimeChart/EEGChannelsDemo/EEGChannelViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/CreateRealtimeChart/EEGChannelsDemo/EEGExampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/CreateRealtimeChart/EEGChannelsDemo/EEGExampleViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/CreateStockCharts/MultiPane/VolumePaneViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/CreateStockCharts/MultiPane/VolumePaneViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/ModifyAxisBehaviour/ShiftedAxes/ShiftedAxesBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/ModifyAxisBehaviour/ShiftedAxes/ShiftedAxesBehavior.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/SeeFeaturedApplication/DiscontinuousAxisDemo/DiscontinuousAxisViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/SeeFeaturedApplication/DiscontinuousAxisDemo/DiscontinuousAxisViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/SeeFeaturedApplication/Oscilloscope/ShiftedAxesBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/SeeFeaturedApplication/Oscilloscope/ShiftedAxesBehavior.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/SeeFeaturedApplication/SciTrader/SciTraderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/SeeFeaturedApplication/SciTrader/SciTraderViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/UseSciChartWithMvvm/ManipulateSeriesMVVM/SeriesType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Examples/UseSciChartWithMvvm/ManipulateSeriesMVVM/SeriesType.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Bubble_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Bubble_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Candlestick_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Candlestick_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Column_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Column_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Digital_Line_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Digital_Line_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Digital_Mountain_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Digital_Mountain_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Line_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Line_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Mountain_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Mountain_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Scatter_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Basic_Chart_Types/Scatter_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Chart_Annotations/Datapoint_Markers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Chart_Annotations/Datapoint_Markers.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Chart_Annotations/Trade_Markers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Chart_Annotations/Trade_Markers.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Create_Realtime_Charts/50-Channel_EEG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Create_Realtime_Charts/50-Channel_EEG.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Create_Realtime_Charts/FIFO_(Scrolling)_Charts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Create_Realtime_Charts/FIFO_(Scrolling)_Charts.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Create_a_Multiseries_Chart/Line_and_Scatter_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Create_a_Multiseries_Chart/Line_and_Scatter_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/HeatmapChartTypes/Heatmap_Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/HeatmapChartTypes/Heatmap_Chart.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Tooltips_and_Hit-Test/Hit-Test_API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Tooltips_and_Hit-Test/Hit-Test_API.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Tooltips_and_Hit-Test/PointMarkers_Selection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Tooltips_and_Hit-Test/PointMarkers_Selection.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Zoom_History_Manager/Simple_Undo_Redo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Zoom_History_Manager/Simple_Undo_Redo.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Zoom_History_Manager/Zoom_History_MVVM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Zoom_History_Manager/Zoom_History_MVVM.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Zoom_and_Pan_a_Chart/Custom_Overview_Control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Zoom_and_Pan_a_Chart/Custom_Overview_Control.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Zoom_and_Pan_a_Chart/Per-Axis_Scrollbars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/b2D_Charts/Zoom_and_Pan_a_Chart/Per-Axis_Scrollbars.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/cFeatured_Apps/Financial_Charts/SciChart_Trader_Demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/cFeatured_Apps/Financial_Charts/SciChart_Trader_Demo.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/cFeatured_Apps/Performance_Demos/Performance_Demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/cFeatured_Apps/Performance_Demos/Performance_Demo.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/ExampleDefinitions/cFeatured_Apps/Scientific_Charts/Oscilloscope_Demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/ExampleDefinitions/cFeatured_Apps/Scientific_Charts/Oscilloscope_Demo.xml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/add-objects-3d-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/add-objects-3d-chart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/histogram-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/histogram-chart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/parallel-coordinate-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/parallel-coordinate-plot.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/realtime-3d-surface-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/realtime-3d-surface-mesh.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/simple-waterfall-3d-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/simple-waterfall-3d-chart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/spectrogram-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/spectrogram-chart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/tenor-curves-3d-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/tenor-curves-3d-chart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/theme-manager-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/theme-manager-chart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/vital-signs-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/vital-signs-monitor.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/waterfall-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Examples/SciChart.Examples/Resources/Images/waterfall-chart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Themes/Generic.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartChangePropertiesDynamically/ChangePropertiesDynamically.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ChangePropertiesDynamically 4 | { 5 | public partial class ChangePropertiesDynamically : Window 6 | { 7 | public ChangePropertiesDynamically() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartChangePropertiesDynamically/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartScatterSeriesOnWalls/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartSelectPointsOnSurfaceMesh/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DScatterChart_DragPointModifier/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Scatter3DChart_DragPointModifier 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DScatterChart_DragPointModifier/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AddObjectsToA3DChart/AddObjectsToA3DChart/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace AddObjectsToA3DChart 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AddObjectsToA3DChart/AddObjectsToA3DChart/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AddObjectsToA3DChart/AddObjectsToA3DChart/WhiteWoodTexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/AddObjectsToA3DChart/AddObjectsToA3DChart/WhiteWoodTexture.jpg -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace AnimatedDataSeriesFilterExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationDragModifier3D/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace AnnotationDragModifier3DExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationDragModifier3D/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace AnnotationsBindingToTextBoxExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace AnnotationsBindingToTextBoxExample 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace AspectRatioGridLines 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace TicklinesUniformGridExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/aspectratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/AspectRatioSandbox/aspectratio.png -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AxisMvvmApplyStyle/AxisMvvmApplyStyle/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace AxisMvvmApplyStyle 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AxisMvvmApplyStyle/AxisMvvmApplyStyle/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace AnnotationsBindingToTextBoxExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChartExport 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace AnnotationsBindingToTextBoxExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CompositeAnnotationsMvvm/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace AnnotationsBindingToTextBoxExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CompositeAnnotationsMvvm/CompositeAnnotationsMvvm.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CompositeAnnotationsMvvmExample 4 | { 5 | public partial class CompositeAnnotationsMvvm : Window 6 | { 7 | public CompositeAnnotationsMvvm() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CompositeAnnotationsMvvm/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CompositeAnnotationsMvvm/RangeXAnnotationViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using SciChart.Charting.Model.ChartSeries; 3 | 4 | namespace CompositeAnnotationsMvvmExample 5 | { 6 | public class RangeXAnnotationViewModel : CompositeAnnotationViewModel 7 | { 8 | public override Type ViewType { get { return typeof(RangeXAnnotation); } } 9 | } 10 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomAxisBandsProviderExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomAxisBandsProviderExample 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomCompositeAnnotationExample/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomCompositeAnnotationExampleExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomCompositeAnnotationExample/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace AnnotationsBindingToTextBoxExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/CustomModifierSandbox.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomModifierSandboxExample 4 | { 5 | public partial class CustomModifierSandbox : Window 6 | { 7 | public CustomModifierSandbox() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomPointMarkerExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomSeriesMvvmExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomSeriesMvvmExample 4 | { 5 | public partial class CustomSeriesMvvm : Window 6 | { 7 | public CustomSeriesMvvm() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomShapeZoomModifier/CustomShapeZoomModifier/CustomShapeZoomModifier/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomShapeZoomModifier/CustomShapeZoomModifier/CustomShapeZoomModifier/ModifierAxis.cs: -------------------------------------------------------------------------------- 1 | namespace CustomShapeZoomModifier 2 | { 3 | public enum ModifierAxis 4 | { 5 | X, 6 | Y, 7 | XY 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChartExport 4 | { 5 | /// 6 | /// Interaction logic for Shell.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.DashedLinesChart 4 | { 5 | /// 6 | /// Interaction logic for Shell.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DigitalAnalyzerPerformanceDemo/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DigitalAnalyzerPerformanceDemo/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart_DigitalAnalyzerPerformanceDemo 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomSeriesMvvmExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleScaleDiscontinuousDateTimeAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace DoubleScaleDiscontinuousDateTimeAxisExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleScaleDiscontinuousDateTimeAxis/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace DoubleScaleDiscontinuousDateTimeAxisExample 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | 11 | DataContext = new MainViewModel(); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleScaleDiscontinuousDateTimeAxis/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace WpfApp33 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EliminatingFlickerInDirectXRenderer/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace EliminatingFlickerExamplee 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EliminatingFlickerInDirectXRenderer/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace EventOnZoomExtentsCompleted 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace HitTestSandboxExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace ImplicitStylesExample 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ImplicitStylesExample 4 | { 5 | public partial class ImplicitStyles : Window 6 | { 7 | public ImplicitStyles() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace KeyboardMoveXozModifier3DExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace LabStyleChartsExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabelIndividualStylingColoring/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace LabelIndividualStylingColoring 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabelIndividualStylingColoring/LabelIndividualStylingColoring.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/LabelIndividualStylingColoring/LabelIndividualStylingColoring.PNG -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabelIndividualStylingColoring/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LegendAxisVisibilityCheckbox/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace RotatedAxisLabelsExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LegendAxisVisibilityCheckbox/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Lidar3DPointCloudDemo/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MarketProfileTradingChartExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/MvvmVersion/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/MvvmVersion/mirrored YAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace mirrored_YAxis 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/MvvmVersion/mirrored YAxis/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace WpfApplication14 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/XamlVersion/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/XamlVersion/mirrored YAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace mirrored_YAxis 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MouseEventsOnAnnotations/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace WpfApp31 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MouseEventsOnAnnotations/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MultiLineDateTimeAxisLabelsExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/MultiLineDateTimeAxisLabels.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MultiLineDateTimeAxisLabelsExample 4 | { 5 | public partial class MultiLineDateTimeAxisLabels : Window 6 | { 7 | public MultiLineDateTimeAxisLabels() 8 | { 9 | InitializeComponent(); 10 | 11 | xAxis.TextFormatting = "dd MMM yyyy\r\nHH:mm:ss"; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleAppDomainsExample/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OffScreenExportExample/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace OffScreenExportExample 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OffScreenExportExample/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using SciChart.Charting; 3 | 4 | namespace OilAndGasExample 5 | { 6 | public partial class App : Application 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-1.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-1.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-2.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-2.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-3.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-3.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-4.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-4.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-5.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-5.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-6.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-6.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-7.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-7.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-8.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-8.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-9.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-9.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridLegend.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace OilAndGasExample.GridCharts 4 | { 5 | public partial class GridLegend : UserControl 6 | { 7 | public GridLegend() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridPanel.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace OilAndGasExample.GridCharts 4 | { 5 | public partial class GridPanel : UserControl 6 | { 7 | public GridPanel() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace OilAndGasExample 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/ThreeDCharts/Chart3DPanel.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace OilAndGasExample.ThreeDCharts 4 | { 5 | public partial class Chart3DPanel : UserControl 6 | { 7 | public Chart3DPanel() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/ThreeDCharts/Data/Scatter-XYZ.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/ThreeDCharts/Data/Scatter-XYZ.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Density.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Density.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/PoreSpace.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/PoreSpace.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Resistivity.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Resistivity.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Shale.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Shale.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Sonic.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Sonic.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Texture.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/Data/Texture.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/VerticalPanel.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace OilAndGasExample.VerticalCharts 4 | { 5 | public partial class VerticalPanel : UserControl 6 | { 7 | public VerticalPanel() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Plane3DAnnotationExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/VerticalPlaneGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/Plane3DAnnotation/VerticalPlaneGeometry.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ResamplingOfGridDataSeries3D/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ResamplingOfGridDataSeries3DExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ResamplingOfGridDataSeries3D/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace RotatedAxisLabelsExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace RotatedAxisLabelsExample 4 | { 5 | public partial class RotatedAxisLabels : Window 6 | { 7 | public RotatedAxisLabels() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace SciChartSurfaceMeshSelection 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/SurfaceMeshVertexInfo.cs: -------------------------------------------------------------------------------- 1 | namespace SciChartSurfaceMeshSelection 2 | { 3 | public class SurfaceMeshVertexInfo 4 | { 5 | public int XIndex { get; set; } 6 | 7 | public int ZIndex { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ScrollbarAboveAxisExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ScrollbarMvvmAxisExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ScrollbarMvvmAxisExample 4 | { 5 | public partial class ScrollbarMvvmAxis : Window 6 | { 7 | public ScrollbarMvvmAxis() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SelectSeriesOnHover/SelectSeriesOnHover/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace SelectSeriesOnHover 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SelectSeriesOnHover/SelectSeriesOnHover/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SlimLineRenderableSeries/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SlimLineRenderableSeriesExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SlimLineRenderableSeries/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SlimLineRenderableSeries/SlimLineDrawingProvider.cs: -------------------------------------------------------------------------------- 1 | using SciChart.Charting.Visuals.RenderableSeries.DrawingProviders; 2 | using SciChart.Data.Model; 3 | 4 | namespace SlimLineRenderableSeriesExample 5 | { 6 | public class SlimLineDrawingProvider : LineSeriesDrawingProvider 7 | { 8 | public SlimLineDrawingProvider(SlimLineRenderableSeries renderSeries) : base(renderSeries) 9 | { 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/State Series Example/Method1 Chartception/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace State_Series_Example 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/State Series Example/Method1 Chartception/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/State Series Example/Method2 Axis Panel Template/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace State_Series_Example 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/State Series Example/Method2 Axis Panel Template/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/State Series Example/Method3 Custom Series/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace State_Series_Example 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/State Series Example/Method3 Custom Series/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace StockChartLogAxisExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace StockChartLogAxisExample 4 | { 5 | public partial class StockChartLogAxis : Window 6 | { 7 | public StockChartLogAxis() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace StringsOnXAxisExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ScrollingStripChartExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StrokeDashArrayPointMarkers/StrokeDashArrayPointMarkers/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SweepingEcgExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace TextAnnotation_dynamic_size 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace TextAnnotation_dynamic_size 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace ImplicitStylesExample 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace DragThresholdMvvmExample 4 | { 5 | public partial class DragThresholdMvvm : Window 6 | { 7 | public DragThresholdMvvm() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TicklinesUniformGrid/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TicklinesUniformGrid/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace TicklinesUniformGridExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TicklinesUniformGrid/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace TimeLineControlExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/ColorExtensions.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Media; 2 | 3 | namespace TimeLineControlExample 4 | { 5 | public static class ColorExtensions 6 | { 7 | public static int ToArgb(this Color color) 8 | { 9 | return (int)((color.A << 24) | (color.R << 16) | (color.G << 8) | (color.B)); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace ImplicitStylesExample 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace TruePolarChartExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace ImplicitStylesExample 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/Resources/TestImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/CustomerExamples/UsingRenderContextAPI/Resources/TestImage.jpg -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VerticalSliceModifierMvvm/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CustomSeriesMvvmExample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VerticalSliceModifierMvvm/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VisualXcceleratorEnableTest/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace WpfApplication1 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | public App() 11 | { 12 | //SciChartSurface.SetRuntimeLicenseKey(@"Put your License Key here"); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VisualXcceleratorEnableTest/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace YAxisSameZeroLineExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsAfterMvvmSeriesChanges/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ZoomExtentsAfterMvvmSeriesChangedExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsAfterMvvmSeriesChanges/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsAfterMvvmSeriesChanges/ZoomExtentsAfterMvvmSeriesChanged.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ZoomExtentsAfterMvvmSeriesChangedExample 4 | { 5 | public partial class ZoomExtentsAfterMvvmSeriesChanged : Window 6 | { 7 | public ZoomExtentsAfterMvvmSeriesChanged() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ZoomExtentsOnVisibilityChangedExample 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/ZoomExtentsOnVisibilityChanged.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace ZoomExtentsOnVisibilityChangedExample 4 | { 5 | public partial class ZoomExtentsOnVisibilityChanged : Window 6 | { 7 | public ZoomExtentsOnVisibilityChanged() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sandbox/DirectXDeploymentTestApp/DesignerView showing Software Renderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/DirectXDeploymentTestApp/DesignerView showing Software Renderer.png -------------------------------------------------------------------------------- /Sandbox/DirectXDeploymentTestApp/NuGet PackageReference version/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/DirectXDeploymentTestApp/NuGet Packages.config version/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/DirectXDeploymentTestApp/Runtime View showing DirectX Renderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/DirectXDeploymentTestApp/Runtime View showing DirectX Renderer.png -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace Fifo100MillionPointsDemo 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo/HelperClasses/Colors.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Media; 2 | 3 | namespace Fifo100MillionPointsDemo.HelperClasses 4 | { 5 | public class Colors 6 | { 7 | public static Color RandomColor() 8 | { 9 | return Color.FromRgb(Rand.NextByte(55, 255), 10 | Rand.NextByte(55, 255), 11 | Rand.NextByte(55, 255)); 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Fifo100MillionPointsDemo 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/fifo-1-billion-points-demo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/Fifo100MillionPointsDemo/fifo-1-billion-points-demo.PNG -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf - .NET 6.0/WpfApplication1/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf/WpfApplication1.sln.GhostDoc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | *.min.js 4 | jquery*.js 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf/WpfApplication1/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/video-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/LicensingTestApp/video-thumb.jpg -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/ChartProviderSciChart/depends/Abt.Controls.SciChart.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/WPFChartPerformanceBenchmark/ChartProviderSciChart/depends/Abt.Controls.SciChart.Wpf.dll -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/ChartProviderSciChart_Trunk/PublicPrivateKeyFile.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/WPFChartPerformanceBenchmark/ChartProviderSciChart_Trunk/PublicPrivateKeyFile.snk -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/ChartProviders.Common/DataProviders/XyData.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace ChartProviders.Common.DataProviders 4 | { 5 | public class XyData 6 | { 7 | public IList XData { get; set; } 8 | public IList YData { get; set; } 9 | } 10 | } -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/ChartProviders.Common/IChartingProvider.cs: -------------------------------------------------------------------------------- 1 | namespace ChartProviders.Common 2 | { 3 | public interface IChartingProvider 4 | { 5 | ISpeedTest ScatterPointsSpeedTest(); 6 | ISpeedTest FifoLineSpeedTest(); 7 | ISpeedTest LineAppendSpeedTest(); 8 | ISpeedTest LoadNxNRefreshTest(); 9 | 10 | string Name { get; } 11 | 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/ChartProviders.Common/PublicPrivateKeyFile.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/WPFChartPerformanceBenchmark/ChartProviders.Common/PublicPrivateKeyFile.snk -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/WPFChartPerformanceBenchmark/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/WPFChartPerformanceBenchmark_SC_DirectX_vs_Software/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/WPFChartPerformanceBenchmark_SC_DirectX_vs_Software/sharpdx_direct3d11_1_effects_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/WPFChartPerformanceBenchmark/WPFChartPerformanceBenchmark_SC_DirectX_vs_Software/sharpdx_direct3d11_1_effects_x64.dll -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/WPFChartPerformanceBenchmark_SC_DirectX_vs_Software/sharpdx_direct3d11_1_effects_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/6e1a12c2c39eeabcd8df7d17e813d3df24d2a995/Sandbox/WPFChartPerformanceBenchmark/WPFChartPerformanceBenchmark_SC_DirectX_vs_Software/sharpdx_direct3d11_1_effects_x86.dll -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 02 Creating a SciChartSurface/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 02 Creating a SciChartSurface/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 02 Creating a SciChartSurface/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 03 Adding Series to a Chart/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 03 Adding Series to a Chart/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 04 Adding Zooming, Panning/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 04 Adding Zooming, Panning/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 05 Adding Tooltips, Legends/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 05 Adding Tooltips, Legends/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 06 Realtime Updates/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 06 Realtime Updates/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 07 Adding Annotations/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 07 Adding Annotations/InfoAnnotation.xaml.cs: -------------------------------------------------------------------------------- 1 | using SciChart.Charting.Visuals.Annotations; 2 | namespace SciChart.Tutorial 3 | { 4 | public partial class InfoAnnotation : CustomAnnotation 5 | { 6 | public InfoAnnotation() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 07 Adding Annotations/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/InfoAnnotation.xaml.cs: -------------------------------------------------------------------------------- 1 | using SciChart.Charting.Visuals.Annotations; 2 | namespace SciChart.Tutorial 3 | { 4 | public partial class InfoAnnotation : CustomAnnotation 5 | { 6 | public InfoAnnotation() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 09 Linking Multiple Charts/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 09 Linking Multiple Charts/InfoAnnotation.xaml.cs: -------------------------------------------------------------------------------- 1 | using SciChart.Charting.Visuals.Annotations; 2 | namespace SciChart.Tutorial 3 | { 4 | public partial class InfoAnnotation : CustomAnnotation 5 | { 6 | public InfoAnnotation() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 09 Linking Multiple Charts/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 02b Creating a SciChartSurface with MVVM/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 02b Creating a SciChartSurface with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 02b Creating a SciChartSurface with MVVM/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 02b Creating a SciChartSurface with MVVM/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 03b Adding Series to a Chart with MVVM/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 03b Adding Series to a Chart with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 03b Adding Series to a Chart with MVVM/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | /// 6 | /// Interaction logic for MainWindow.xaml 7 | /// 8 | public partial class MainWindow : Window 9 | { 10 | public MainWindow() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 03b Adding Series to a Chart with MVVM/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 04b Adding Zooming Panning with MVVM/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 04b Adding Zooming Panning with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 04b Adding Zooming Panning with MVVM/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 04b Adding Zooming Panning with MVVM/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 05b Adding Tooltips, Legends with MVVM/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 05b Adding Tooltips, Legends with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 05b Adding Tooltips, Legends with MVVM/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 05b Adding Tooltips, Legends with MVVM/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 06b Adding Realtime Updates with MVVM/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 06b Adding Realtime Updates with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 06b Adding Realtime Updates with MVVM/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 06b Adding Realtime Updates with MVVM/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/InfoAnnotation.xaml.cs: -------------------------------------------------------------------------------- 1 | using SciChart.Charting.Visuals.Annotations; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class InfoAnnotation : CustomAnnotationForMvvm 6 | { 7 | public InfoAnnotation() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/InfoAnnotationViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using SciChart.Charting.Model.ChartSeries; 3 | 4 | namespace SciChart.Mvvm.Tutorial 5 | { 6 | public class InfoAnnotationViewModel : CustomAnnotationViewModel 7 | { 8 | public override Type ViewType 9 | { 10 | get { return typeof(InfoAnnotation); } 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 08b Adding Multiple Axis with MVVM/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 08b Adding Multiple Axis with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 08b Adding Multiple Axis with MVVM/InfoAnnotation.xaml.cs: -------------------------------------------------------------------------------- 1 | using SciChart.Charting.Visuals.Annotations; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class InfoAnnotation : CustomAnnotation 6 | { 7 | public InfoAnnotation() 8 | { 9 | InitializeComponent(); 10 | 11 | DefaultStyleKey = typeof(InfoAnnotation); 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 08b Adding Multiple Axis with MVVM/InfoAnnotationViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using SciChart.Charting.Model.ChartSeries; 3 | 4 | namespace SciChart.Mvvm.Tutorial 5 | { 6 | public class InfoAnnotationViewModel : CustomAnnotationViewModel 7 | { 8 | public override Type ViewType 9 | { 10 | get { return typeof(InfoAnnotation); } 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 08b Adding Multiple Axis with MVVM/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 08b Adding Multiple Axis with MVVM/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 09b Linking Multiple Charts with MVVM/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 09b Linking Multiple Charts with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 09b Linking Multiple Charts with MVVM/InfoAnnotation.xaml.cs: -------------------------------------------------------------------------------- 1 | using SciChart.Charting.Visuals.Annotations; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class InfoAnnotation : CustomAnnotation 6 | { 7 | public InfoAnnotation() 8 | { 9 | InitializeComponent(); 10 | 11 | DefaultStyleKey = typeof(InfoAnnotation); 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 09b Linking Multiple Charts with MVVM/InfoAnnotationViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using SciChart.Charting.Model.ChartSeries; 3 | 4 | namespace SciChart.Mvvm.Tutorial 5 | { 6 | public class InfoAnnotationViewModel : CustomAnnotationViewModel 7 | { 8 | public override Type ViewType 9 | { 10 | get { return typeof(InfoAnnotation); } 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 09b Linking Multiple Charts with MVVM/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SciChart.Mvvm.Tutorial 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 09b Linking Multiple Charts with MVVM/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 02-3D Creating a SciChart3DSurface/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 02-3D Creating a SciChart3DSurface/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Tutorial_02_Creating_a_SciChart3DSurface 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 02-3D Creating a SciChart3DSurface/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Tutorial_02_Creating_a_SciChart3DSurface 4 | { 5 | public partial class MainWindow : Window 6 | { 7 | public MainWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 02-3D Creating a SciChart3DSurface/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 03-3D Adding Series to a 3D Chart/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 03-3D Adding Series to a 3D Chart/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Tutorial_03_Adding_Series_to_a_3D_Chart 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 03-3D Adding Series to a 3D Chart/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 04-3D Adding Zooming, Panning Behavior/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 04-3D Adding Zooming, Panning Behavior/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Tutorial_04_Adding_Zooming_Panning_Behavior 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Tutorials/SciChart 3D/Tutorial 04-3D Adding Zooming, Panning Behavior/NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /lastbuild.txt: -------------------------------------------------------------------------------- 1 | 28148 2 | --------------------------------------------------------------------------------