├── .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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/.nuget/NuGet.Config -------------------------------------------------------------------------------- /Examples/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Examples/.nuget/NuGet.exe.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/.nuget/NuGet.exe.props -------------------------------------------------------------------------------- /Examples/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/AutomationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo.SmokeTests/AutomationTestBase.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/SmokeTests_NewAppPerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo.SmokeTests/SmokeTests_NewAppPerTest.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo.SmokeTests/WriteableBitmapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo.SmokeTests/WriteableBitmapExtensions.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/App.config -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/App.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/App.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/AutocompleteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/AutocompleteHelper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/AutocompleteSearchBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/AutocompleteSearchBehaviour.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/CloseWindowBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/CloseWindowBehavior.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/ExampleAutocompleteBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/ExampleAutocompleteBehavior.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/InitializationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/InitializationBehaviour.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/ListBoxScrollToTopBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/ListBoxScrollToTopBehavior.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/PopulateExamplesBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/PopulateExamplesBehaviour.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/ScrollViewerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/ScrollViewerExtensions.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/SharedResourceDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/SharedResourceDictionary.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Behaviors/TilesHarmonistBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Behaviors/TilesHarmonistBehavior.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Bootstrapper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/CodeColorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/CodeColorizer.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/Common/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/Common/Guard.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/Common/LanguageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/Common/LanguageId.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/Common/ScopeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/Common/ScopeName.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/Formatters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/Formatters.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/ICodeColorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/ICodeColorizer.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/IFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/IFormatter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/ILanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/ILanguage.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/IStyleSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/IStyleSheet.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/LanguageRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/LanguageRule.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/Languages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/Languages.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/Parsing/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/Parsing/Scope.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/SourceLanguageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/SourceLanguageType.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/Style.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/StyleDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/StyleDictionary.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/CodeHighlighter/StyleSheets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/CodeHighlighter/StyleSheets.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/AutoCompleteBoxCompatible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Common/AutoCompleteBoxCompatible.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/Converters/ExampleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Common/Converters/ExampleConverter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/Converters/IsGroupConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Common/Converters/IsGroupConverter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/DispatcherScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Common/DispatcherScheduler.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/ExampleUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Common/ExampleUsage.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/PausableDispatcherTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Common/PausableDispatcherTimer.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Common/WrapPanelCompatible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Common/WrapPanelCompatible.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/AnimatedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/AnimatedImage.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/Breadcrumb/Breadcrumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/Breadcrumb/Breadcrumb.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/ContentSizeLimiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/ContentSizeLimiter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/CustomListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/CustomListBox.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/CustomListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/CustomListBoxItem.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/HyperlinkButtonCompatible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/HyperlinkButtonCompatible.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/ItemsControlWithUIAutomation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/ItemsControlWithUIAutomation.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/NavigationTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/NavigationTabControl.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/ShowcaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/ShowcaseControl.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/Tile/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/Tile/Tile.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Controls/Tile/TileState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Controls/Tile/TileState.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/AppConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/AppConstants.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/ApplicationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/ApplicationPage.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/BindingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/BindingProxy.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Clip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Clip.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/CodeHighlighter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/CodeHighlighter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/EverythingTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/EverythingTemplateSelector.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Example.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/GenericAutomationPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/GenericAutomationPeer.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingByCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingByCategory.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingByFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingByFeature.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingByMostUsed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingByMostUsed.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingByName.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Grouping/GroupingMode.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Grouping/IGrouping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Grouping/IGrouping.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/HtmlExport/HtmlExportHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/HtmlExport/HtmlExportHelper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/ISelectable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/ISelectable.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/InvokeSelectCommandAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/InvokeSelectCommandAction.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/LinqExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/LinqExtension.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Module.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Navigation/ExamplesFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Navigation/ExamplesFrame.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Navigation/FrameBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Navigation/FrameBase.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Navigation/MainFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Navigation/MainFrame.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/Navigation/Navigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/Navigation/Navigator.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/ProjectExport/DirectoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/ProjectExport/DirectoryHelper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/ProjectExport/ProjectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/ProjectExport/ProjectWriter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/RichTextBoxExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/RichTextBoxExtension.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/RichTextBoxHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/RichTextBoxHelper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/SerializationUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/SerializationUtil.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/TransitioningFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/TransitioningFrame.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/UsageTracking/SyncUsageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/UsageTracking/SyncUsageHelper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Helpers/UsageTracking/UsageCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Helpers/UsageTracking/UsageCalculator.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/MainWindow.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/MainWindowViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/NullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/NullLogger.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Fonts/Marlett.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Fonts/Marlett.ttf -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Fonts/NEUROPOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Fonts/NEUROPOL.ttf -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/AnimatedImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/AnimatedImage.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/Breadcrumb.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/Breadcrumb.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/Buttons.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/Controls.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/Hyperlink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/Hyperlink.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/Icons.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/ListBox.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/OpacityMask.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/OpacityMask.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/Scrollbars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/Scrollbars.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/ShowcaseControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/ShowcaseControl.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/Tile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/Tile.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/Styles/TransitioningFrame.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/Styles/TransitioningFrame.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/codeStopwords.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/codeStopwords.dat -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Resources/stopwords.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Resources/stopwords.dat -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/SciChart.Examples.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/SciChart.Examples.Demo.csproj -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/SciChartIconWin256x256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/SciChartIconWin256x256.ico -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Search/CreateInvertedIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Search/CreateInvertedIndex.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Search/ExampleSearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Search/ExampleSearchProvider.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Search/NGramTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Search/NGramTokenizer.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Search/PorterStemmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Search/PorterStemmer.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Search/Posting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Search/Posting.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Search/TermInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Search/TermInfo.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ShellControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ShellControl.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ShellControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ShellControl.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Splash.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Splash.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Splash.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Splash.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Themes/Dark.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Themes/Navy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Themes/Navy.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/BreadCrumbViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/BreadCrumbViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/BreadcrumbItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/BreadcrumbItemViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/EverythingGroupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/EverythingGroupViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/EverythingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/EverythingViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/ExampleGroupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/ExampleGroupViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/ExampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/ExampleViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/ExportExampleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/ExportExampleHelper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/ExportExampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/ExportExampleViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/FeedbackViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/FeedbackViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/SearchExampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/SearchExampleViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/ViewModels/TileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/ViewModels/TileViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/ComboBoxItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/ComboBoxItemTemplateSelector.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/EverythingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/EverythingView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/EverythingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/EverythingView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/ExampleNavigationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/ExampleNavigationView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/ExampleNavigationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/ExampleNavigationView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/ExampleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/ExampleView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/ExampleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/ExampleView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/ExportExampleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/ExportExampleView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/ExportExampleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/ExportExampleView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/FeedbackView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/FeedbackView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/FeedbackView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/FeedbackView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/HomeView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/HomeView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SearchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/SearchView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SearchView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/SearchView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/SettingsView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/SettingsView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SourceCodeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/SourceCodeView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SourceCodeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/SourceCodeView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SourceTipsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/SourceTipsView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/SourceTipsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/SourceTipsView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/TipsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/TipsView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/Views/TipsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/Views/TipsView.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.Demo/app.manifest -------------------------------------------------------------------------------- /Examples/SciChart.Examples.Demo/sharpdx_direct3d11_1_effects_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/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/HEAD/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/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/BaseViewModel.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/Enums.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/ExampleHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/ExampleHelpers.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/FeaturesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/FeaturesHelper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/IPowerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/IPowerManager.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/Instrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/Instrument.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/NewsEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/NewsEvent.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/PowerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/PowerManager.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/PowerPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/PowerPlan.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/StrongTyped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/StrongTyped.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/TextElementEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/TextElementEx.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/TimeFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/TimeFrame.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/ToolbarIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/ToolbarIcon.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Common/Trade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Common/Trade.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/AscReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/AscReader.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/DataManager.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/DoubleSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/DoubleSeries.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/FFT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/FFT.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/IDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/IDataManager.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/MovingAverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/MovingAverage.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/PopulationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/PopulationData.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/PriceBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/PriceBar.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/PriceSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/PriceSeries.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/Tick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/Tick.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/TradeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/TradeData.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/VitalSignsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/VitalSignsData.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/WeatherData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/WeatherData.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Data/XYPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Data/XYPoint.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Helpers/TextBoxHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Helpers/TextBoxHelper.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Themes/Dark.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Themes/Navy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Themes/Navy.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples.ExternalDependencies/Themes/generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples.ExternalDependencies/Themes/generic.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/ChartTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/ChartTypes.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/ExampleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/ExampleDefinition.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/ExampleLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/ExampleLoader.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/ExampleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/ExampleManager.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/FiltersAPI/CustomFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/FiltersAPI/CustomFilter.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/FiltersAPI/FiltersAPIExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/FiltersAPI/FiltersAPIExample.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/FiltersAPI/FiltersAPIExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/FiltersAPI/FiltersAPIExample.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/ModifyAxisBehaviour/MixedCharts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/ModifyAxisBehaviour/MixedCharts.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/StyleAChart/LineSeriesStyling.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/StyleAChart/LineSeriesStyling.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/StyleAChart/UsePointMarkers.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/StyleAChart/UsePointMarkers.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/StyleAChart/UsePointMarkers.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/StyleAChart/UsePointMarkers.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/StyleAChart/XamlStyling.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/StyleAChart/XamlStyling.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/StyleAChart/XamlStyling.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/StyleAChart/XamlStyling.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/ZoomAndPanAChart/DragAreaToZoom.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/ZoomAndPanAChart/DragAreaToZoom.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/ZoomAndPanAChart/MouseDragToPan.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/ZoomAndPanAChart/MouseDragToPan.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/ZoomAndPanAChart/ScrollBars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/ZoomAndPanAChart/ScrollBars.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/ZoomAndPanAChart/ScrollBars.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/ZoomAndPanAChart/ScrollBars.xaml.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Examples/ZoomHistory/SimpleUndoRedoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Examples/ZoomHistory/SimpleUndoRedoView.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Features.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Features.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/add-objects-3d-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/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/HEAD/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/HEAD/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/HEAD/Examples/SciChart.Examples/Resources/Images/realtime-3d-surface-mesh.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Resources/Images/spectrogram-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Examples/SciChart.Examples/Resources/Images/waterfall-chart.png -------------------------------------------------------------------------------- /Examples/SciChart.Examples/SciChart.Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/SciChart.Examples.csproj -------------------------------------------------------------------------------- /Examples/SciChart.Examples/ThemeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/ThemeLoader.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Themes/Dark.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Themes/Generic.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Themes/Navy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Themes/Navy.xaml -------------------------------------------------------------------------------- /Examples/SciChart.Examples/Urls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/Urls.cs -------------------------------------------------------------------------------- /Examples/SciChart.Examples/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart.Examples/app.config -------------------------------------------------------------------------------- /Examples/SciChart2D3D.Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Examples/SciChart2D3D.Examples.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/README.md -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartChangePropertiesDynamically/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartChangePropertiesDynamically/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartChangePropertiesDynamically/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartChangePropertiesDynamically/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartChangePropertiesDynamically/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartChangePropertiesDynamically/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartScatterSeriesOnWalls/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartScatterSeriesOnWalls/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartScatterSeriesOnWalls/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartScatterSeriesOnWalls/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartScatterSeriesOnWalls/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartScatterSeriesOnWalls/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartSelectPointsOnSurfaceMesh/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartSelectPointsOnSurfaceMesh/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartSelectPointsOnSurfaceMesh/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartSelectPointsOnSurfaceMesh/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DChartSelectPointsOnSurfaceMesh/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DChartSelectPointsOnSurfaceMesh/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DScatterChart_DragPointModifier/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DScatterChart_DragPointModifier/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DScatterChart_DragPointModifier/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DScatterChart_DragPointModifier/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/3DScatterChart_DragPointModifier/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/3DScatterChart_DragPointModifier/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AddObjectsToA3DChart/AddObjectsToA3DChart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AddObjectsToA3DChart/AddObjectsToA3DChart.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/AnimatedDataSeries.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnimatedDataSeries/AnimatedDataSeries.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/AnimatedDataSeries.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnimatedDataSeries/AnimatedDataSeries.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/AnimatedDataSeriesFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnimatedDataSeries/AnimatedDataSeriesFilter.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/AnimatedDataSeriesFilter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnimatedDataSeries/AnimatedDataSeriesFilter.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnimatedDataSeries/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnimatedDataSeries/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnimatedDataSeries/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnimatedDataSeries/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationDragModifier3D/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationDragModifier3D/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationDragModifier3D/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationDragModifier3D/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationDragModifier3D/BoxAnnotation3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationDragModifier3D/BoxAnnotation3D.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationDragModifier3D/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationDragModifier3D/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationsBindingToTextBox/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationsBindingToTextBox/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationsBindingToTextBox/MainViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationsBindingToTextBox/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationsBindingToTextBox/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AnnotationsBindingToTextBox/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AnnotationsBindingToTextBox/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioGridLines/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioGridLines/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/AspectRatioGridLines.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioGridLines/AspectRatioGridLines.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioGridLines/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioGridLines/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioGridLines/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/VisibleRangeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioGridLines/VisibleRangeHelper.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioGridLines/ZoomExtentsModifierEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioGridLines/ZoomExtentsModifierEx.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/AspectRatios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/AspectRatios.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/AspectRatios.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/AspectRatios.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/AspectRatios.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/AspectRatios.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/AspectRatios.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/AspectRatios.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/Readme.md -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AspectRatioSandbox/aspectratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AspectRatioSandbox/aspectratio.png -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AxisMvvmApplyStyle/AxisMvvmApplyStyle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AxisMvvmApplyStyle/AxisMvvmApplyStyle.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/AxisMvvmApplyStyle/AxisMvvmApplyStyle/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/AxisMvvmApplyStyle/AxisMvvmApplyStyle/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartPrinting/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartPrinting/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/ChartPrintingMultiPaneCharts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartPrinting/ChartPrintingMultiPaneCharts.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/ChartPrintingMultiPaneCharts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartPrinting/ChartPrintingMultiPaneCharts.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/LineChartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartPrinting/LineChartViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartPrinting/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartPrinting/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartsWidthSync/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartsWidthSync/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/ChartWidthSynchronization.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartsWidthSync/ChartWidthSynchronization.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/ExampleResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartsWidthSync/ExampleResources.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartsWidthSync/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartsWidthSync/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ChartsWidthSync/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ChartsWidthSync/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ColumnSeriesNoGaps/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ColumnSeriesNoGaps/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/ColumnSeriesNoGaps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ColumnSeriesNoGaps/ColumnSeriesNoGaps.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/ColumnSeriesNoGaps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ColumnSeriesNoGaps/ColumnSeriesNoGaps.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/ColumnSeriesNoGaps.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ColumnSeriesNoGaps/ColumnSeriesNoGaps.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/ColumnSeriesNoGaps.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ColumnSeriesNoGaps/ColumnSeriesNoGaps.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ColumnSeriesNoGaps/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ColumnSeriesNoGaps/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CompositeAnnotationsMvvm/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CompositeAnnotationsMvvm/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CompositeAnnotationsMvvm/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CompositeAnnotationsMvvm/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CompositeAnnotationsMvvm/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CompositeAnnotationsMvvm/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CompositeAnnotationsMvvm/RangeXAnnotation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CompositeAnnotationsMvvm/RangeXAnnotation.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomAxisBandsProvider/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomAxisBandsProvider/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomAxisBandsProvider/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomAxisBandsProvider/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomAxisBandsProvider/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomAxisBandsProvider/XAxisBandsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomAxisBandsProvider/XAxisBandsProvider.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomCompositeAnnotationExample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomCompositeAnnotationExample/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomCompositeAnnotationExample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomCompositeAnnotationExample/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomCompositeAnnotationExample/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomCompositeAnnotationExample/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomModifiersSandbox/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomModifiersSandbox/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomModifiersSandbox/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/SimpleLegendModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomModifiersSandbox/SimpleLegendModifier.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomModifiersSandbox/SimpleZoomPanModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomModifiersSandbox/SimpleZoomPanModifier.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/CustomPointMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/CustomPointMarker.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/CustomPointMarker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/CustomPointMarker.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/CustomPointMarker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/CustomPointMarker.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomPointMarker/SeriesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomPointMarker/SeriesExtensions.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvm.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvmViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/CustomSeriesMvvmViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/FastLineRenderableSeriesEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/FastLineRenderableSeriesEx.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/CustomSeriesMvvm/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/CustomSeriesMvvm/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/ExampleResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/ExampleResources.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DPI_Aware_SciChartSurface/app.manifest -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DashedLinesChart/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DashedLinesChart/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/DashedLinesChart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DashedLinesChart/DashedLinesChart.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/DashedLinesChart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DashedLinesChart/DashedLinesChart.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DashedLinesChart/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DashedLinesChart/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DashedLinesChart/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DashedLinesChart/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DigitalAnalyzerPerformanceDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DigitalAnalyzerPerformanceDemo/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DigitalAnalyzerPerformanceDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DigitalAnalyzerPerformanceDemo/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DigitalAnalyzerPerformanceDemo/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DigitalAnalyzerPerformanceDemo/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/OADateLabelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DoubleAxisAsDateTimeAxis/OADateLabelProvider.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DoubleScaleDiscontinuousDateTimeAxis/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DoubleScaleDiscontinuousDateTimeAxis/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/MainViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/DynamicVerticallyStackedAxis/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EliminatingFlickerInDirectXRenderer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/EliminatingFlickerInDirectXRenderer/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EliminatingFlickerInDirectXRenderer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/EliminatingFlickerInDirectXRenderer/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/EventOnZoomExtentsCompleted/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/HitTestGetPoint3D.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/HitTestGetPoint3D.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/HitTestGetPoint3D.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/HitTestGetPoint3D.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/HitTestSandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/HitTestSandbox.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/HitTestSandbox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/HitTestSandbox.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/HitTestToAddAnnotations.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/HitTestToAddAnnotations.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/HitTestToAddAnnotations.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/HitTestToAddAnnotations.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/HitTestSandbox/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/HitTestSandbox/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ImplicitStyles/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ImplicitStyles/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ImplicitStyles/ImplicitStyles.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ImplicitStyles/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ImplicitStyles/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/BoxAnnotation3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/BoxAnnotation3D.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/KeyboardMoveXozModifier3D/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabStyleCharts/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabStyleCharts/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/LabStyleCharts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabStyleCharts/LabStyleCharts.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/LabStyleCharts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabStyleCharts/LabStyleCharts.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/LabStyleCharts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabStyleCharts/LabStyleCharts.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/LabStyleCharts.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabStyleCharts/LabStyleCharts.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabStyleCharts/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabStyleCharts/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabelIndividualStylingColoring/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabelIndividualStylingColoring/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabelIndividualStylingColoring/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabelIndividualStylingColoring/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabelIndividualStylingColoring/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabelIndividualStylingColoring/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LabelIndividualStylingColoring/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LabelIndividualStylingColoring/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LegendAxisVisibilityCheckbox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LegendAxisVisibilityCheckbox/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LegendAxisVisibilityCheckbox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LegendAxisVisibilityCheckbox/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/LegendAxisVisibilityCheckbox/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/LegendAxisVisibilityCheckbox/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Lidar3DPointCloudDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Lidar3DPointCloudDemo/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Lidar3DPointCloudDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Lidar3DPointCloudDemo/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Lidar3DPointCloudDemo/AscReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Lidar3DPointCloudDemo/AscReader.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Lidar3DPointCloudDemo/Lidar3DPointCloudDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Lidar3DPointCloudDemo/Lidar3DPointCloudDemo.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Lidar3DPointCloudDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Lidar3DPointCloudDemo/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Lidar3DPointCloudDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Lidar3DPointCloudDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Lidar3DPointCloudDemo/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Lidar3DPointCloudDemo/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MarketProfileTradingExample/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MarketProfileTradingExample/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MarketProfileTradingExample/Converters.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/DoubleSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MarketProfileTradingExample/DoubleSeries.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/FlyoutMenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MarketProfileTradingExample/FlyoutMenuButton.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/MovingAverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MarketProfileTradingExample/MovingAverage.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MarketProfileTradingExample/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MarketProfileTradingExample/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/MvvmVersion/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MirroredYAxis/MvvmVersion/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/MvvmVersion/mirrored YAxis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MirroredYAxis/MvvmVersion/mirrored YAxis.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/XamlVersion/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MirroredYAxis/XamlVersion/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MirroredYAxis/XamlVersion/mirrored YAxis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MirroredYAxis/XamlVersion/mirrored YAxis.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MouseEventsOnAnnotations/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MouseEventsOnAnnotations/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MouseEventsOnAnnotations/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MouseEventsOnAnnotations/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MouseEventsOnAnnotations/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MouseEventsOnAnnotations/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MouseEventsOnAnnotations/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MouseEventsOnAnnotations/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MouseEventsOnAnnotations/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MouseEventsOnAnnotations/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MultiLineDateTimeAxisLabels/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleAppDomainsExample/ChartWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleAppDomainsExample/ChartWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleAppDomainsExample/ChartWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleAppDomainsExample/ChartWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleAppDomainsExample/ChartWindowLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleAppDomainsExample/ChartWindowLoader.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleAppDomainsExample/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleAppDomainsExample/DataManager.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleAppDomainsExample/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleAppDomainsExample/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleAppDomainsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleAppDomainsExample/Program.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleUIThreadExample/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleUIThreadExample/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleUIThreadExample/DataManager.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleUIThreadExample/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleUIThreadExample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleUIThreadExample/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/SecondWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleUIThreadExample/SecondWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/MutipleUIThreadExample/SecondWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/MutipleUIThreadExample/SecondWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OffScreenExportExample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OffScreenExportExample/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OffScreenExportExample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OffScreenExportExample/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OffScreenExportExample/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OffScreenExportExample/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OffScreenExportExample/OffScreenExportView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OffScreenExportExample/OffScreenExportView.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/Common/Chart3DViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/Common/Chart3DViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/Common/ChartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/Common/ChartViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/Common/IChart3DFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/Common/IChart3DFactory.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/Common/IChartFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/Common/IChartFactory.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-1.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/Data/Grid-9.csv.gz -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridLegend.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridLegend.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridLegend.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridLegend.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridPanel.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/GridCharts/GridPanel.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/OilAndGasExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/OilAndGasExample.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/OilAndGasExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/OilAndGasExample.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/ThreeDCharts/Chart3DPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/ThreeDCharts/Chart3DPanel.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/AxisLegend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/OilAndGasExample/VerticalCharts/AxisLegend.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Plane3DAnnotation/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Plane3DAnnotation/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Plane3DAnnotation/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/Plane3DAnnotation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Plane3DAnnotation/Plane3DAnnotation.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/Plane3DAnnotation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Plane3DAnnotation/Plane3DAnnotation.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/Plane3DAnnotation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Plane3DAnnotation/Plane3DAnnotation.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/Plane3DAnnotation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Plane3DAnnotation/Plane3DAnnotation.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Plane3DAnnotation/VerticalPlaneGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Plane3DAnnotation/VerticalPlaneGeometry.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/Readme.md -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ResamplingOfGridDataSeries3D/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ResamplingOfGridDataSeries3D/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ResamplingOfGridDataSeries3D/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ResamplingOfGridDataSeries3D/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ResamplingOfGridDataSeries3D/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ResamplingOfGridDataSeries3D/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/RotatedAxisLabels/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/RotatedAxisLabels/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/RotatedAxisLabels/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/RotatedAxisLabels/RotatedAxisLabels.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SciChartSurfaceMeshSelection/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarAboveAxis/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarAboveAxis/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarAboveAxis/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/ScrollbarAboveAxis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarAboveAxis/ScrollbarAboveAxis.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/ScrollbarAboveAxis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarAboveAxis/ScrollbarAboveAxis.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/ScrollbarAboveAxis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarAboveAxis/ScrollbarAboveAxis.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarAboveAxis/ScrollbarAboveAxis.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarAboveAxis/ScrollbarAboveAxis.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarMvvmAxis/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarMvvmAxis/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarMvvmAxis/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxis.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxisViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ScrollbarMvvmAxis/ScrollbarMvvmAxisViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SelectSeriesOnHover/SelectSeriesOnHover.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SelectSeriesOnHover/SelectSeriesOnHover.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SimpleLineChart_VB/SimpleLineChart_VB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SimpleLineChart_VB/SimpleLineChart_VB.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SlimLineRenderableSeries/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SlimLineRenderableSeries/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SlimLineRenderableSeries/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SlimLineRenderableSeries/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SlimLineRenderableSeries/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SlimLineRenderableSeries/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SlimLineRenderableSeries/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SlimLineRenderableSeries/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SlimLineRenderableSeries/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SlimLineRenderableSeries/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxis.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxisStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxisStyles.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxisViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/StockChartLogAxisViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StockChartLogAxis/SwitchAxisTypeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StockChartLogAxis/SwitchAxisTypeBehavior.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StringsOnXAxis/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StringsOnXAxis/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StringsOnXAxis/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/StringsOnXAxis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StringsOnXAxis/StringsOnXAxis.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/StringsOnXAxis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StringsOnXAxis/StringsOnXAxis.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/StringsOnXAxis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StringsOnXAxis/StringsOnXAxis.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StringsOnXAxis/StringsOnXAxis.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StringsOnXAxis/StringsOnXAxis.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StripChart/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StripChart/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StripChart/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/RelativeTimeLabelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StripChart/RelativeTimeLabelProvider.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/ScrollingStripChart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StripChart/ScrollingStripChart.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/ScrollingStripChart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StripChart/ScrollingStripChart.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/ScrollingStripChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StripChart/ScrollingStripChart.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/StripChart/ScrollingStripChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/StripChart/ScrollingStripChart.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/DimTracePaletteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/DimTracePaletteProvider.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/ModuloLabelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/ModuloLabelProvider.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/SweepingEcg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/SweepingEcg.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/SweepingEcg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/SweepingEcg.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/SweepingEcg.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/SweepingEcg.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/SweepingEcg.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/SweepingEcg.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/SweepingEcgSeries/Waveform.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/SweepingEcgSeries/Waveform.csv -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TextAnnotationDynamicSize/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TextAnnotationDynamicSize/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TextAnnotationDynamicSize/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TextAnnotationDynamicSize/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TextAnnotationDynamicSize/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TextAnnotationDynamicSize/TextAnnotationEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TextAnnotationDynamicSize/TextAnnotationEx.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ThresholdedLineSeries/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ThresholdedLineSeries/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ThresholdedLineSeries/DragThresholdMvvm.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ThresholdedLineSeries/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ThresholdedLineSeries/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TicklinesUniformGrid/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TicklinesUniformGrid/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TicklinesUniformGrid/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TicklinesUniformGrid/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TicklinesUniformGrid/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TicklinesUniformGrid/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TicklinesUniformGrid/TicklinesUniformGrid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TicklinesUniformGrid/TicklinesUniformGrid.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TicklinesUniformGrid/TicklinesUniformGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TicklinesUniformGrid/TicklinesUniformGrid.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/ColorExtensions.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/TimeLineControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/TimeLineControl.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/TimeLineControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/TimeLineControl.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/TimeLineControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/TimeLineControl.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/TimeLineControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/TimeLineControl.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TimelineControl/TimelineRenderableSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TimelineControl/TimelineRenderableSeries.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TouchScreenModifiers/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TouchScreenModifiers/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/CustomTouchModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TouchScreenModifiers/CustomTouchModifier.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TouchScreenModifiers/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/TouchInputSandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TouchScreenModifiers/TouchInputSandbox.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/TouchInputSandbox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TouchScreenModifiers/TouchInputSandbox.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/TouchInputSandbox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TouchScreenModifiers/TouchInputSandbox.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TouchScreenModifiers/TouchInputSandbox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TouchScreenModifiers/TouchInputSandbox.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TruePolar/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TruePolar/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TruePolar/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/TruePolarChart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TruePolar/TruePolarChart.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/TruePolarChart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TruePolar/TruePolarChart.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/TruePolarChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TruePolar/TruePolarChart.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/TruePolar/TruePolarChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/TruePolar/TruePolarChart.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/UsingRenderContextAPI/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/UsingRenderContextAPI/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/UsingRenderContextAPI/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/UsingRenderContextAPI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/UsingRenderContextAPI/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/Resources/TestImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/UsingRenderContextAPI/Resources/TestImage.jpg -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/UsingRenderContextAPI/UsingRenderContextApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/UsingRenderContextAPI/UsingRenderContextApi.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VerticalSliceModifierMvvm/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VerticalSliceModifierMvvm/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VerticalSliceModifierMvvm/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VerticalSliceModifierMvvm/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VerticalSliceModifierMvvm/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VerticalSliceModifierMvvm/MainViewModel.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VerticalSliceModifierMvvm/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VerticalSliceModifierMvvm/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VerticalSliceModifierMvvm/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VerticalSliceModifierMvvm/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VerticalSliceModifierMvvm/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VerticalSliceModifierMvvm/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VisualXcceleratorEnableTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VisualXcceleratorEnableTest/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VisualXcceleratorEnableTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VisualXcceleratorEnableTest/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VisualXcceleratorEnableTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VisualXcceleratorEnableTest/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VisualXcceleratorEnableTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VisualXcceleratorEnableTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/VisualXcceleratorEnableTest/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/VisualXcceleratorEnableTest/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/YAxisSameZeroLine/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/YAxisSameZeroLine/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/YAxisSameZeroLine/NuGet.config -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/YAxisSameZeroLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/YAxisSameZeroLine/YAxisSameZeroLine.csproj -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/YAxisSameZeroLine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/YAxisSameZeroLine/YAxisSameZeroLine.sln -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/YAxisSameZeroLine.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/YAxisSameZeroLine/YAxisSameZeroLine.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/YAxisSameZeroLine/YAxisSameZeroLine.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/YAxisSameZeroLine/YAxisSameZeroLine.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsAfterMvvmSeriesChanges/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ZoomExtentsAfterMvvmSeriesChanges/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/App.xaml -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/CustomerExamples/ZoomExtentsOnVisibilityChanged/NuGet.config -------------------------------------------------------------------------------- /Sandbox/DirectXDeploymentTestApp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/DirectXDeploymentTestApp/Readme.md -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo.sln -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo/App.xaml -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/Fifo100MillionPointsDemo/Fifo100MillionPointsDemo/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/Fifo100MillionPointsDemo/NuGet.config -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/Fifo100MillionPointsDemo/Readme.md -------------------------------------------------------------------------------- /Sandbox/Fifo100MillionPointsDemo/fifo-1-billion-points-demo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/Fifo100MillionPointsDemo/fifo-1-billion-points-demo.PNG -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Readme.md -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf - .NET 6.0/Licensing Test App net6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf - .NET 6.0/Licensing Test App net6.sln -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf - .NET 6.0/WpfApplication1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf - .NET 6.0/WpfApplication1/App.xaml -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf - .NET 6.0/WpfApplication1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf - .NET 6.0/WpfApplication1/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf - AsyncLicenseLoading/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf - AsyncLicenseLoading/Readme.md -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf/WpfApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf/WpfApplication1.sln -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf/WpfApplication1.sln.GhostDoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf/WpfApplication1.sln.GhostDoc.xml -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf/WpfApplication1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf/WpfApplication1/App.xaml -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf/WpfApplication1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf/WpfApplication1/App.xaml.cs -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf/WpfApplication1/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf/WpfApplication1/MainWindow.xaml -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/Wpf/WpfApplication1/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/Wpf/WpfApplication1/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sandbox/LicensingTestApp/video-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/LicensingTestApp/video-thumb.jpg -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/WPFChartPerformanceBenchmark/NuGet.config -------------------------------------------------------------------------------- /Sandbox/WPFChartPerformanceBenchmark/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Sandbox/WPFChartPerformanceBenchmark/Readme.md -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 02 Creating a SciChartSurface/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 02 Creating a SciChartSurface/App.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 03 Adding Series to a Chart/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 03 Adding Series to a Chart/App.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 04 Adding Zooming, Panning/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 04 Adding Zooming, Panning/App.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 04 Adding Zooming, Panning/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 04 Adding Zooming, Panning/App.xaml.cs -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 05 Adding Tooltips, Legends/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 05 Adding Tooltips, Legends/App.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 06 Realtime Updates/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 06 Realtime Updates/App.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 06 Realtime Updates/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 06 Realtime Updates/App.xaml.cs -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 06 Realtime Updates/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 06 Realtime Updates/MainWindow.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 06 Realtime Updates/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 06 Realtime Updates/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 06 Realtime Updates/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 06 Realtime Updates/NuGet.config -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 07 Adding Annotations/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 07 Adding Annotations/App.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 07 Adding Annotations/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 07 Adding Annotations/App.xaml.cs -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 07 Adding Annotations/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 07 Adding Annotations/MainWindow.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 07 Adding Annotations/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 07 Adding Annotations/NuGet.config -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 08 Multiple Axis/App.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 08 Multiple Axis/App.xaml.cs -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/InfoAnnotation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 08 Multiple Axis/InfoAnnotation.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 08 Multiple Axis/MainWindow.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 08 Multiple Axis/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 08 Multiple Axis/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 08 Multiple Axis/NuGet.config -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 09 Linking Multiple Charts/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 09 Linking Multiple Charts/App.xaml -------------------------------------------------------------------------------- /Tutorials/Code-Behind/Tutorial 09 Linking Multiple Charts/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/Code-Behind/Tutorial 09 Linking Multiple Charts/App.xaml.cs -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 04b Adding Zooming Panning with MVVM/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/MVVM/Tutorial 04b Adding Zooming Panning with MVVM/App.xaml -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/App.xaml -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/App.xaml.cs -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/MVVM/Tutorial 07b Adding Annotations with MVVM/NuGet.config -------------------------------------------------------------------------------- /Tutorials/MVVM/Tutorial 08b Adding Multiple Axis with MVVM/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABTSoftware/SciChart.Wpf.Examples/HEAD/Tutorials/MVVM/Tutorial 08b Adding Multiple Axis with MVVM/App.xaml -------------------------------------------------------------------------------- /lastbuild.txt: -------------------------------------------------------------------------------- 1 | 28148 2 | --------------------------------------------------------------------------------