This commit is contained in:
coco
2026-07-03 15:56:07 +08:00
commit caef23209c
5767 changed files with 1004268 additions and 0 deletions
+123
View File
@@ -0,0 +1,123 @@
//******************************************************************************
// SCICHART® Copyright SciChart Ltd. 2011-2022. All rights reserved.
//
// Web: http://www.scichart.com
// Support: support@scichart.com
// Sales: sales@scichart.com
//
// build.gradle is part of the SCICHART® Examples. Permission is hereby granted
// to modify, create derivative works, distribute and publish any part of this source
// code whether for commercial, private or personal use.
//
// The SCICHART® examples are distributed in the hope that they will be useful, but
// without any warranty. It is provided "AS IS" without warranty of any kind, either
// expressed or implied.
//******************************************************************************
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.github.triplet.play' version '3.7.0'
}
def apkVersionCode = APK_VERSION_CODE != '' ? APK_VERSION_CODE.toInteger() : rootProject.ext.versionCode
def apkVersionName = APK_VERSION_NAME != '' ? APK_VERSION_NAME : rootProject.ext.versionName
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
applicationId "com.scichart.examples"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.compileSdkVersion
versionCode apkVersionCode
versionName apkVersionName
multiDexEnabled true
}
compileOptions {
sourceCompatibility rootProject.ext.sourceCompatibility
targetCompatibility rootProject.ext.sourceCompatibility
}
signingConfigs {
release {
storeFile RELEASE_STORE_FILE != '' ? file(RELEASE_STORE_FILE) : null
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
buildTypes {
debug {
minifyEnabled false
}
release {
minifyEnabled rootProject.ext.minifyEnabled
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
signed {
initWith release
debuggable false
signingConfig signingConfigs.release
// use release build since we don't provide releaseSigned builds
matchingFallbacks = ['release']
}
}
productFlavors {
}
lintOptions {
checkReleaseBuilds false
}
buildFeatures {
viewBinding true
}
namespace 'com.scichart.examples'
}
repositories {
maven { url 'https://www.myget.org/F/abtsoftware-bleeding-edge/maven' }
maven { url 'https://www.myget.org/F/abtsoftware/maven' }
mavenCentral()
}
dependencies {
//@BEGINDEPENDS
implementation (group: 'com.scichart.library', name: 'core', version: '4.5.4.4865', ext: 'aar')
implementation (group: 'com.scichart.library', name: 'drawing', version: '4.5.4.4865', ext: 'aar')
implementation (group: 'com.scichart.library', name: 'data', version: '4.5.4.4865', ext: 'aar')
implementation (group: 'com.scichart.library', name: 'charting', version: '4.5.4.4865', ext: 'aar')
implementation (group: 'com.scichart.library', name: 'charting3d', version: '4.5.4.4865', ext: 'aar')
implementation (group: 'com.scichart.library', name: 'extensions', version: '4.5.4.4865', ext: 'aar')
implementation (group: 'com.scichart.library', name: 'extensions3d', version: '4.5.4.4865', ext: 'aar')
//@ENDDEPENDS
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.15'
implementation 'com.trello.rxlifecycle3:rxlifecycle:3.1.0'
implementation 'com.trello.rxlifecycle3:rxlifecycle-android:3.1.0'
implementation 'com.github.twalcari:java-prettify:1.2.2'
implementation "androidx.core:core-ktx:1.7.0"
implementation "androidx.fragment:fragment-ktx:1.4.0"
implementation 'androidx.multidex:multidex:2.0.1'
}
play {
track.set("internal")
defaultToAppBundles.set(true)
}
+33
View File
@@ -0,0 +1,33 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Program Files\Android\sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# ignore warnings and save classes required for syntax highlighting
-dontwarn java.awt.**
-dontwarn javax.swing.**
-dontwarn javax.annotation.**
-dontwarn syntaxhighlight.**
-keep public class java.awt.** { *; }
-keep public class javax.swing.** { *; }
-keep public class syntaxhighlight.** { *; }
-keep public class prettify.** { *; }
# keep class to prevent exception
-keep public class android.support.v7.widget.SearchView { *; }
# need to save example fragments and default ctor because we're using reflection when open examples
-keep public class * extends com.scichart.examples.fragments.base.ExampleBaseFragment {
public <init>(...);
}
# repack obfuscated classes into single package so it would be hard to find their originall package
-repackageclasses ''
-allowaccessmodification
@@ -0,0 +1,32 @@
//******************************************************************************
// SCICHART® Copyright SciChart Ltd. 2011-2016. All rights reserved.
//
// Web: http://www.scichart.com
// Support: support@scichart.com
// Sales: sales@scichart.com
//
// ApplicationTest.java is part of SCICHART®, High Performance Scientific Charts
// For full terms and conditions of the license, see http://www.scichart.com/scichart-eula/
//
// This source code is protected by international copyright law. Unauthorized
// reproduction, reverse-engineering, or distribution of all or any portion of
// this source code is strictly prohibited.
//
// This source code contains confidential and proprietary trade secrets of
// SciChart Ltd., and should at no time be copied, transferred, sold,
// distributed or made available without express written permission.
//******************************************************************************
package com.scichart.examples;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
@@ -0,0 +1,42 @@
//******************************************************************************
// SCICHART® Copyright SciChart Ltd. 2011-2016. All rights reserved.
//
// Web: http://www.scichart.com
// Support: support@scichart.com
// Sales: sales@scichart.com
//
// ExampleLoaderTests.java is part of SCICHART®, High Performance Scientific Charts
// For full terms and conditions of the license, see http://www.scichart.com/scichart-eula/
//
// This source code is protected by international copyright law. Unauthorized
// reproduction, reverse-engineering, or distribution of all or any portion of
// this source code is strictly prohibited.
//
// This source code contains confidential and proprietary trade secrets of
// SciChart Ltd., and should at no time be copied, transferred, sold,
// distributed or made available without express written permission.
//******************************************************************************
package com.scichart.examples.demo;
import android.test.InstrumentationTestCase;
import junit.framework.Assert;
import java.util.List;
public class ExampleLoaderTests extends InstrumentationTestCase {
public void testParseAllExamplesWithoutException() {
final ExampleLoader exampleLoader = new ExampleLoader(getInstrumentation().getTargetContext());
final List<String> xmlPaths = exampleLoader.discoverAllXmlFiles();
Assert.assertNotSame(xmlPaths.size(), 0);
for (String xmlPath : xmlPaths) {
final ExampleKey key = exampleLoader.parseKey(xmlPath);
Assert.assertNotNull(key);
final ExampleDefinition definition = exampleLoader.parseDefinition(xmlPath);
Assert.assertNotNull(definition);
}
}
}
@@ -0,0 +1,105 @@
<?xml version="1.0" encoding="utf-8"?>
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2022. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- AndroidManifest.xml is part of SCICHART®, High Performance Scientific Charts -->
<!-- For full terms and conditions of the license, see http://www.scichart.com/scichart-eula/ -->
<!-- -->
<!-- This source code is protected by international copyright law. Unauthorized -->
<!-- reproduction, reverse-engineering, or distribution of all or any portion of -->
<!-- this source code is strictly prohibited. -->
<!-- -->
<!-- This source code contains confidential and proprietary trade secrets of -->
<!-- SciChart Ltd., and should at no time be copied, transferred, sold, -->
<!-- distributed or made available without express written permission. -->
<!--*************************************************************************-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" />
<application
android:name=".SciChartApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:largeHeap="true"
android:theme="@style/AppTheme"
tools:replace="android:allowBackup">
<activity
android:name=".StartupActivity"
android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".HomeActivity"
android:label="@string/title_activity_example"
android:parentActivityName=".StartupActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".StartupActivity" />
</activity>
<activity
android:name=".ExampleActivity"
android:label="@string/title_activity_example"
android:parentActivityName=".HomeActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".HomeActivity" />
</activity>
<activity
android:name=".Example3DActivity"
android:label="@string/title_activity_example"
android:parentActivityName=".HomeActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".HomeActivity" />
</activity>
<activity
android:name=".ShowcaseActivity"
android:label="@string/title_activity_example"
android:parentActivityName=".HomeActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".HomeActivity" />
</activity>
<activity
android:name=".ExceptionActivity"
android:theme="@style/Theme_Dialog" />
<provider
android:name=".demo.SciChartFilesProvider"
android:authorities="com.scichart.examples.demo.SciChartFilesProvider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
</application>
</manifest>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Animations_Test.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Export Render Surface to Bitmap</Title>
<Description>
Using of transformations to animate each series.
</Description>
<FileName>AnimationsTestFragment</FileName>
<Features>
<Features>Testing</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Create_a_Column_Chart_with_complex_fill.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Create a Column Chart with complex fill</Title>
<Description>
Create a Column Chart with complex fill
</Description>
<FileName>ColumnChartFillFragment</FileName>
<Features>
<Features>Testing</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Create_a_Mountain_Chart_with_complex_fill.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Create a Mountain Chart with complex fill</Title>
<Description>
Create a Mountain Chart with complex fill
</Description>
<FileName>MountainChartFillFragment</FileName>
<Features>
<Features>Testing</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Create_a_Scatter_Chart_with_complex_fill.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Create a Scatter Chart with complex fill</Title>
<Description>
Create a Scatter Chart with complex fill
</Description>
<FileName>ScatterChartFillFragment</FileName>
<Features>
<Features>Testing</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Export_Render_Surface_to_Bitmap.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Export Render Surface to Bitmap</Title>
<Description>
Export Render Surface to Bitmap
</Description>
<FileName>ExportRenderSurfaceToBitmapFragment</FileName>
<Features>
<Features>Testing</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,31 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2021. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Multi-Pane_Stock_Chart.xml is part of SCICHART®, High Performance Scientific Charts -->
<!-- For full terms and conditions of the license, see http://www.scichart.com/scichart-eula/ -->
<!-- -->
<!-- This source code is protected by international copyright law. Unauthorized -->
<!-- reproduction, reverse-engineering, or distribution of all or any portion of -->
<!-- this source code is strictly prohibited. -->
<!-- -->
<!-- This source code contains confidential and proprietary trade secrets of -->
<!-- SciChart Ltd., and should at no time be copied, transferred, sold, -->
<!-- distributed or made available without express written permission. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Multi-Pane Stock Chart</Title>
<IconPath>ic_candles_feature</IconPath>
<Description>
Creates a static multi-pane stock chart with Indicator and Volume panes which uses single SciChartSurface instance
</Description>
<FileName>CreateMultiPaneStockChartFragment</FileName>
<Features>
<Features>Candlesticks</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Render_Surface_Sandbox.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Render Surface Sandbox</Title>
<Description>
Render Surface Sandbox
</Description>
<FileName>RenderSurfaceSandboxFragment</FileName>
<Features>
<Features>Testing</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Band_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Bands chart</Title>
<IconPath>ic_bands_feature</IconPath>
<Description>
Generates a simple Band Series chart in code.
</Description>
<FileName>BandChartFragment</FileName>
<Features>
<Features>Band</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2016. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Bubble_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Bubble chart</Title>
<IconPath>ic_bubble_feature</IconPath>
<Description>
Generates a Bubble-Chart in code. The FastBubbleRenderableSeries can be used to render an XyzDataSeries.
</Description>
<FileName>BubbleChartFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Candlestick_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Candlesticks chart</Title>
<IconPath>ic_candles_feature</IconPath>
<Description>
Generates a simple Candlestick chart in code. The FastCandlestickRenderableSeries can be used to render an OhlcDataSeries.
</Description>
<FileName>CandlestickChartFragment</FileName>
<Features>
<Features>Candlesticks</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Column_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Columns chart</Title>\
<IconPath>ic_columns_feature</IconPath>
<Description>
Generates a simple Column Series chart in code.
</Description>
<FileName>ColumnChartFragment</FileName>
<Features>
<Features>Columns</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Digital_Band_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Digital Bands chart</Title>
<IconPath>ic_digital_bands_feature</IconPath>
<Description>
Generates a simple Digital Band Series chart in code.
</Description>
<FileName>DigitalBandChartFragment</FileName>
<Features>
<Features>Band</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Digital_Line_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Digital Line Chart</Title>
<IconPath>ic_line_digital_feature</IconPath>
<Description>
Generates a Digital Line-Chart in code. The FastLineRenderableSeries can be used to render an XyDataSeries.
</Description>
<FileName>DigitalLineChartFragment</FileName>
<Features>
<Features>DigitalLine</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Digital_Mountain_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_digital_mountain_feature</IconPath>
<Description>
Generates a Digital Mountain (Area) Chart in code. The FastMountainRenderableSeries can be used to render an XyDataSeries.
</Description>
<FileName>DigitalMountainChartFragment</FileName>
<Features>
<Features>Mountain</Features>
<Features>Area</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Heatmap_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Heatmap Chart</Title>
<IconPath>ic_heatmap_feature</IconPath>
<Description>
Demonstrates how to create a real-time Heatmap using SciChart. Accepts a 2D Array of data and has a user-defined colour map which can be displayed as a legend over the chart.
</Description>
<FileName>HeatmapChartFragment</FileName>
<Features>
<Features>Heatmap</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Heatmap_Chart_with_Text.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Heatmap Chart</Title>
<IconPath>ic_heatmap_feature</IconPath>
<Description>
Demonstrates how to create a Heatmap with Text in the cells SciChart
</Description>
<FileName>HeatmapWithTextFragment</FileName>
<Features>
<Features>Heatmap</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Impulse_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Impulse (Stem) chart</Title>
<IconPath>ic_impulse_feature</IconPath>
<Description>
Demonstrates how to use FastImpulseRenderableSeries to create an Impulse-response style chart. FastImpulseRenderableSeries can be used to render data provided by XyDataSeries.
</Description>
<FileName>ImpulseChartFragment</FileName>
<Features>
<Features>Impulse</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Line_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Line chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Generates a Line-Chart in code. The FastLineRenderableSeries can be used to render an XyDataSeries.
</Description>
<FileName>LineChartFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Mountain_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_mountain_feature</IconPath>
<Description>
Generates a Mountain (Area) Chart in code. The FastMountainRenderableSeries can be used to render an XyDataSeries.
</Description>
<FileName>MountainChartFragment</FileName>
<Features>
<Features>Mountain</Features>
<Features>Area</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Scatter_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Scatter chart</Title>
<IconPath>ic_scatter_feature</IconPath>
<Description>
Generates a Scatter chart in code.
</Description>
<FileName>ScatterChartFragment</FileName>
<Features>
<Features>Scatter</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2020. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Spline_Band_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Spline Bands Chart</Title>
<IconPath>ic_bands_feature</IconPath>
<Description>
Generates a Spline Band Series chart in code.
</Description>
<FileName>SplineBandChartFragment</FileName>
<Features>
<Features>Band</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2020. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Spline_Line_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Spline Line Chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Generates Spline Line-Chart in code. The SplineLineRenderableSeries can be used to render an XyDataSeries.
</Description>
<FileName>SplineLineChartFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2020. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Spline_Mountain_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_mountain_feature</IconPath>
<Description>
Generates a Spline Mountain (Area) Chart in code. The SplineMountainRenderableSeries can be used to render an XyDataSeries.
</Description>
<FileName>SplineMountainChartFragment</FileName>
<Features>
<Features>Mountain</Features>
<Features>Area</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Annotations_are_Easy.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Annotations are Easy</Title>
<IconPath>ic_annotations_feature</IconPath>
<Description>
Demonstrates how to use Annotations
</Description>
<FileName>AnnotationsAreEasyFragment</FileName>
<Features>
<Features>Annotations</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Create_Annotations_Dynamically.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Create Annotations Dynamically</Title>
<IconPath>ic_annotations_feature</IconPath>
<Description>
Demonstrates the Modifiers API to create Text, Line, Box, LineArrow and Custom Annotations dynamically.
</Description>
<FileName>CreateAnnotationsDynamicallyFragment</FileName>
<Features>
<Features>Annotations</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Interaction_with_Annotations.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Interaction with Annotations</Title>
<IconPath>ic_annotations_feature</IconPath>
<Description>
Demonstrates how to use Annotations
</Description>
<FileName>InteractionWithAnnotationsFragment</FileName>
<Features>
<Features>Annotations</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Animating_Line_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Animating Line Chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Generates a Line-Chart which animates line when new points are appended in code
</Description>
<FileName>AnimatingLineChartFragment</FileName>
<Features>
<Features>Animation</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Animating_Stacked_Column_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Animating Stacked Column Chart</Title>
<IconPath>ic_stacked_columns_feature</IconPath>
<Description>
Generates a Stacked Column-Chart which animates columns when values are updated in code
</Description>
<FileName>AnimatingStackedColumnChartFragment</FileName>
<Features>
<Features>Animation</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2020. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Custom_Gesture_Modifier.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Custom Gesture</Title>
<IconPath>ic_impulse_feature</IconPath>
<Description>
Create custom gesture modifier for zooming
</Description>
<FileName>CreateCustomGestureModifierFragment</FileName>
<Features>
<Features>Impulse</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Rounded_Columns_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Custom Rounded Columns Chart</Title>
<IconPath>ic_columns_feature</IconPath>
<Description>
Generates a rounded columns chart in code.
</Description>
<FileName>RoundedColumnsExampleFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Pie_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Pie chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Demonstrates how to create a Donut Chart. This is a circular chart type consisting of segments which are proportional to the quantity it represents.
</Description>
<FileName>DonutChartFragment</FileName>
<Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Multi_Pie_Donut_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Multiple series Pie Chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Demonstrates how to create a PieDonut Chart with multiple series. This is a circular chart type consisting of segments which are proportional to the quantity it represents.
</Description>
<FileName>MultiplePieDonutChartFragment</FileName>
<Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,27 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Pie_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Pie chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Demonstrates how to create a Pie Chart. This is a circular chart type consisting of sectors which are proportional to the quantity it represents.
</Description>
<FileName>PieChartFragment</FileName>
<Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Eeg_Channel.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>16-Channel EEG</Title>
<IconPath>ic_realtime_feature</IconPath>
<Description>
This examples showcases the performance of SciChart when rendering a real-time FIFO chart on 16 SciChartSurface instances at the same time.
</Description>
<FileName>EegChannelsFragment</FileName>
<Features>
<Features>Realtime</Features>
<Features>Performance</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,30 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- FIFO_Scrolling_Charts.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_realtime_feature</IconPath>
<Description>
Demonstrates the difference between FIFO and standard DataSeries. A FIFO series discards old data-points once a predefined number of points is met.
</Description>
<FileName>FifoChartsFragment</FileName>
<Features>
<Features>Realtime</Features>
<Features>Performance</Features>
<Features>FIFO</Features>
<Features>Scrolling</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Performance_Demo.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_realtime_feature</IconPath>
<Description>
Demonstrates the speed and power of SciChart in a real-time example. Creates a threadpool timer and pushes 1000 points every 10ms to three series on the chart.
</Description>
<FileName>PerformanceDemoFragment</FileName>
<Features>
<Features>Realtime</Features>
<Features>Performance</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Pinch_Zoom_on_Realtime_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_realtime_feature</IconPath>
<Description>
Demonstrates usage of the Pinch zoom on a realtime chart.
</Description>
<FileName>PinchZoomOnRealtimeChartFragment</FileName>
<Features>
<Features>Realtime</Features>
<Features>FIFO</Features>
<Features>Scrolling</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- RealTime_Ghost_Traces.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>RealTime Ghosted Traces</Title>
<IconPath>ic_realtime_feature</IconPath>
<Description>
This example shows persistence of old traces giving a 'ghosted' effect. As new series are drawn older series are made increasingly transparent until they become invisible.
</Description>
<FileName>RealTimeGhostTracesFragment</FileName>
<Features>
<Features>Realtime</Features>
<Features>Performance</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- FIFO_Scrolling_Charts.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_realtime_feature</IconPath>
<Description>
Demonstrates usage of the SeriesValueModifier
</Description>
<FileName>RealtimeSeriesValuesOnAxisFragment</FileName>
<Features>
<Features>Realtime</Features>
<Features>FIFO</Features>
<Features>Scrolling</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Depth_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Depth Chart</Title>
<IconPath>ic_candles_feature</IconPath>
<Description>
Creates a depth trades charts
</Description>
<FileName>DepthChartFragment</FileName>
<Features>
<Features>Candlesticks</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Easy_Stock_Chart_with_IndexDateAxis.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Easy Stock Chart with IndexDateAxis</Title>
<IconPath>ic_candles_feature</IconPath>
<Description>
Demonstrates IndexDateAxis enables series with different numbers of points to be used, while retaining the benefits of a CategoryAxis to collapse gaps.
</Description>
<FileName>EasyStockChartFragment</FileName>
<Features>
<Features>Candlesticks</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Large_Trades_Charts.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Large Trades Chart</Title>
<IconPath>ic_candles_feature</IconPath>
<Description>
Creates a large trades charts
</Description>
<FileName>CreateLargeTradesStockChartFragment</FileName>
<Features>
<Features>Candlesticks</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Multi-Pane_Stock_Charts.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Multi-Pane Stock Charts</Title>
<IconPath>ic_candles_feature</IconPath>
<Description>
Creates an example with static multi-pane stock chart with Indicator and Volume panes
</Description>
<FileName>CreateMultiPaneStockChartsFragment</FileName>
<Features>
<Features>Candlesticks</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Realtime_Ticking_Stock_Charts.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Realtime Ticking Stock Charts</Title>
<IconPath>ic_candles_feature</IconPath>
<Description>
Creates a real-time example with two series.
</Description>
<FileName>CreateRealTimeTickingStockChartFragment</FileName>
<Features>
<Features>Candlesticks</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Volume_Profile_Stock_Charts.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Volume Profile Stock Charts</Title>
<IconPath>ic_candles_feature</IconPath>
<Description>
Creates a example of Volume Profile.
</Description>
<FileName>VolumeProfileStockChartFragment</FileName>
<Features>
<Features>Candlesticks</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Chart Legends API.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_lines_feature</IconPath>
<Description>
Generates a simple line chart with a chart legend.
</Description>
<FileName>LegendFragment</FileName>
<Features>
<Features>Legend</Features>
<Features>PointMarker</Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Add_Points_Performance_Demo.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Add points</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Generates a simple append points chart.
</Description>
<FileName>AddPointsPerformanceChartFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Add_Remove_Series.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Add/remove renderable series</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Generates a simple add/remove points chart.
</Description>
<FileName>AddRemoveSeriesFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- ShiftedAxes.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Axis Label Rotation</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
Demonstrates how to rotate axis label.
</Description>
<FileName>AxisRotationFragment</FileName>
<Features>
<Features>Axis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Date_Axis_Custom_Formatter.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Date Axis with Custom Format</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Demonstrates how to use a custom label provider to apply different date formats to different ticks on a date axis
</Description>
<FileName>DateLineChartFragment</FileName>
<Features>
<Features>Axis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Date_Line_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Date Axis with Custom Format</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Demonstrates how to use a custom label provider to apply different date formats to different ticks on a date axis
</Description>
<FileName>DateLineChartFragment</FileName>
<Features>
<Features>Axis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Logarithmic_Axis.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Fixed Width Axis</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
This example demonstrates exponential values in SciChart with fixed width.
</Description>
<FileName>FixedWidthAxisFragment</FileName>
<Features>
<Features>LogarithmicAxis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Logarithmic_Axis.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Logarithmic Axis</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
This example demonstrates X or Y logarithmic axis in SciChart. Click the controls in the toolbar to change state. Y-Axis and X-Axis set the respective axes to logarithmic or linear.
</Description>
<FileName>LogarithmicAxisFragment</FileName>
<Features>
<Features>LogarithmicAxis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Manual_Text_Labels_on_Axis.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Manual Text Labels on Axis</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
This example demonstrates how to use a specific set of text values as axis labels, using a custom LabelFormatter
</Description>
<FileName>AxisLabelProviderFragment</FileName>
<Features>
<Features>Axis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Multiple_X_Axes.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Multiple X-Axes</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
Demonstrates a line chart with four series and multiple top / bottom X-Axis and left / right Y-Axis. SciChart supports multiple top or bottom X-Axes and multiple left and right Y-Axes. This example shows in a simple way how to register a line series on each axis.
</Description>
<FileName>MultipleXAxesFragment</FileName>
<Features>
<Features>Axis</Features>
<Features>MultipleAxis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Quad_Left_Right_Y_Axes.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Quad Left/Right Y-Axes</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
Demonstrates a chart with multiple axes.
</Description>
<FileName>QuadLeftRightYAxesFragment</FileName>
<Features>
<Features>MultipleAxis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Secondary_Y_Axes.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Secondary Y-Axes</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
A static example which demonstrates a line chart with two series and primary and secondary Y-Axis.
</Description>
<FileName>SecondaryYAxesFragment</FileName>
<Features>
<Features>Axis</Features>
<Features>MultipleAxis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- ShiftedAxes.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Central XAxis and YAxis</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
Demonstrates how to place X and Y Axes at the Center of the SciChartSurface.
</Description>
<FileName>ShiftedAxesFragment</FileName>
<Features>
<Features>Axis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Vertical_Charts.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Line chart</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
Demonstrates a vertical chart
</Description>
<FileName>VerticalChartsFragment</FileName>
<Features>
<Features>Axis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Vertically_Stacked_YAxes.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Vertically Stacked YAxis</Title>
<IconPath>ic_modify_axes_feature</IconPath>
<Description>
Demonstrates how to create a Vertically Stacked chart where multiple YAxis are occupying different locations on the chart. This allows series to overlap each other as they are on the same SciChartSurface.
</Description>
<FileName>VerticallyStackedYAxesFragment</FileName>
<Features>
<Features>Axis</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Dashboard_Style_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Dashboard style chart</Title>
<IconPath>ic_stacked_columns_feature</IconPath>
<Description>
Demonstrates the many kinds of Stacked chart (Stacked Mountain, Stacked Column, 100% Stacked Column) available in SciChart, and allows MS Excel style changing of data-presentation dynamically.
</Description>
<FileName>DashboardStyleChartsFragment</FileName>
<Features>
<Features>MultiChart</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- ErrorBars_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Error Bars Chart</Title>
<IconPath>ic_error_bars_feature</IconPath>
<Description>
Demonstrates how to add Error Bars to a Line or Scatter Chart.
</Description>
<FileName>ErrorBarsChartFragment</FileName>
<Features>
<Features>MultiChart</Features>
<Features>ErrorBars</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Fan_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Fan Chart</Title>
<IconPath>ic_fan_chart_feature</IconPath>
<Description>
Demonstrates how to use multiple FastBandRenderableSeries to simulate a Fan Chart.
</Description>
<FileName>FanChartFragment</FileName>
<Features>
<Features>Fan</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Multi_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Multi Chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Three SciChartSurface panes are created and arranged vertically.
</Description>
<FileName>MultipleChartsFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,31 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2022. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Population_Pyramid_Chart.xml is part of SCICHART®, High Performance Scientific Charts -->
<!-- For full terms and conditions of the license, see http://www.scichart.com/scichart-eula/ -->
<!-- -->
<!-- This source code is protected by international copyright law. Unauthorized -->
<!-- reproduction, reverse-engineering, or distribution of all or any portion of -->
<!-- this source code is strictly prohibited. -->
<!-- -->
<!-- This source code contains confidential and proprietary trade secrets of -->
<!-- SciChart Ltd., and should at no time be copied, transferred, sold, -->
<!-- distributed or made available without express written permission. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Population Pyramid Chart</Title>
<IconPath>ic_population_pyramid</IconPath>
<Description>
Demonstrates how to create a Pyramid Chart.
</Description>
<FileName>PopulationPyramidFragment</FileName>
<Features>
<Features>MultiChart</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2020. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Spark_Lines_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Spark Lines Chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Demonstrates how to use multiple SciChart to create spark lines chart
</Description>
<FileName>SparkLinesChartsFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2016. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Stacked_Bar_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Stacked Bars Chart</Title>
<IconPath>ic_stacked_bars_feature</IconPath>
<Description>
Demonstrates how to create stacked bar chart. The StackedColumnRenderableSeries API can be used to render columns stacked one above another, side by side, or a Left or Right aligned Bar Chart.
</Description>
<FileName>StackedBarChartFragment</FileName>
<Features>
<Features>MultiChart</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2016. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Stacked_Column_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Stacked Column Chart</Title>
<IconPath>ic_stacked_columns_feature</IconPath>
<Description>
Demonstrates how to use a Stacked Column Chart. The StackedColumnRenderableSeries API can be used to render columns stacked one above another, side by side, or a Left or Right aligned Bar Chart.
</Description>
<FileName>StackedColumnChartFragment</FileName>
<Features>
<Features>MultiChart</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2016. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Stacked_Column_Side_By_Side.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Stacked Column Side by Side Chart</Title>
<IconPath>ic_stacked_columns_feature</IconPath>
<Description>
Demonstrates how to use a Stacked Column Chart to render the stacked columns side by side. The StackedColumnRenderableSeries API can be used to render columns stacked one above another, side by side, or a Left or Right aligned Bar Chart.
</Description>
<FileName>StackedColumnSideBySideFragment</FileName>
<Features>
<Features>MultiChart</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Stacked_Mountain_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Stacked Mountain Chart</Title>
<IconPath>ic_stacked_mountain_feature</IconPath>
<Description>
Demonstrates how to use a Stacked Mountain Chart. The StackedMountainRenderableSeries API can be used to render mountain/areas stacked one above another.
</Description>
<FileName>StackedMountainChartFragment</FileName>
<Features>
<Features>MultiChart</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Sync_Multi_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Synchronize Multi Chart</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Two SciChartSurface panes are created and arranged vertically.
</Description>
<FileName>SyncMultipleChartsFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,29 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Create_Custom_Theme.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Create a Custom Theme</Title>
<IconPath>ic_change_theme_feature</IconPath>
<Description>
Create a Custom Theme
</Description>
<FileName>CustomThemeFragment</FileName>
<Features>
<Features>Theme</Features>
<Features>Style</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Using_ThemeManager.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_change_theme_feature</IconPath>
<Description>
Teaches how to change colors of chart area and renderable series.
</Description>
<FileName>StylingSciChartFragment</FileName>
<Features>
<Features>Theme</Features>
<Features>Style</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Use_Heatmap_PaletteProvider.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_heatmap_feature</IconPath>
<Description>
Demonstrates how to use the PaletteProvider API to color FastUniformHeatmapRenderableSeries.
</Description>
<FileName>HeatmapPaletteProviderFragment</FileName>
<Features>
<Features>Theme</Features>
<Features>Style</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Use_PaletteProvider.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_change_theme_feature</IconPath>
<Description>
Demonstrates how to use the PaletteProvider API to color lines and points individually.
</Description>
<FileName>UsePaletteProviderFragment</FileName>
<Features>
<Features>Theme</Features>
<Features>Style</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Use_PointMarkers.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Use PointMarkers</Title>
<IconPath>ic_scatter_feature</IconPath>
<Description>
Use PointMarkers
</Description>
<FileName>UsePointMarkersFragment</FileName>
<Features>
<Features>Scatter</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Using_ThemeManager.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<IconPath>ic_change_theme_feature</IconPath>
<Description>
SciChart Ships with 7 stunning themes, which you can apply to your charts with a single line of code.
</Description>
<FileName>ThemeProviderFragment</FileName>
<Features>
<Features>Theme</Features>
<Features>Style</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Change_Column_Color.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Change Column Color</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates change color of the touched column
</Description>
<FileName>ChangeColumnColor</FileName>
<Features>
<Features>Tooltips</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Chart_inside_ScrollView.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Chart inside ScrollView</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates the use of the chart inside a scrolling view
</Description>
<FileName>ChartInsideScrollViewFragment</FileName>
<Features>
<Features>Tooltips</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Custom_Tooltips_with_Modifiers.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Custom Tooltips with Modifiers</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates how to create custom tooltips for various modifiers within SciChart
</Description>
<FileName>CustomTooltipsWithModifiersFragment</FileName>
<Features>
<Features>Tooltips</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Customization_Cursor_Modifier_Tooltips.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Customization CursorModifier Tooltips</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates how to customize CursorModifier Tooltips
</Description>
<FileName>CustomizationCursorModifierTooltipsFragment</FileName>
<Features>
<Features>Tooltips</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Customization_Rollover_Modifier_Tooltips.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Customization RolloverModifier Tooltips</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates how to customize RolloverModifier Tooltips
</Description>
<FileName>CustomizationRolloverModifierTooltipsFragment</FileName>
<Features>
<Features>Tooltips</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Customization_Tooltip_Modifier_Tooltips.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Customization TooltipModifier Tooltips</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates how to customize TooltipModifier Tooltips
</Description>
<FileName>CustomizationTooltipModifierTooltipsFragment</FileName>
<Features>
<Features>Tooltips</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Hit-Test_API.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Hit-Test API</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates the Hit-Test API, which can be used to get feedback about clicks on data-points or lines and enable selection, or showing of context menus.
</Description>
<FileName>HitTestDataPointsFragment</FileName>
<Features>
<Features>HitTest</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Series_Selection.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Series Selection</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates the use of the SeriesSelectionModifier, which hooks into the ChartModifier API to select series
</Description>
<FileName>SeriesSelectionFragment</FileName>
<Features>
<Features>HitTest</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Using_CursorModifier_Tooltips.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Using CursorModifier Tooltips</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates how to use CursorModifier
</Description>
<FileName>UsingCursorModifierTooltipsFragment</FileName>
<Features>
<Features>HitTest</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Using_RolloverModifier_Tooltips.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Using RolloverModifier Tooltips</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates how to use RolloverModifier
</Description>
<FileName>UsingRolloverModifierTooltipsFragment</FileName>
<Features>
<Features>HitTest</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Using_TooltipModifier_Tooltips.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Using TooltipModifier Tooltips</Title>
<IconPath>ic_hittest_feature</IconPath>
<Description>
Demonstrates the use of the TooltipModifier, part of the ChartModifier API for getting information about Renderable Series and its displaying on tooltips.
</Description>
<FileName>UsingTooltipModifierTooltipsFragment</FileName>
<Features>
<Features>Tooltips</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Drag_Area_To_Zoom.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Drag area to zoom</Title>
<IconPath>ic_zoom_feature</IconPath>
<Description>
Example which demonstrates using drag area for zooming
</Description>
<FileName>DragAreaToZoomFragment</FileName>
<Features>
<Features>Zoom</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Drag_Axis_To_Scale_a_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Drag axis to scale</Title>
<IconPath>ic_zoom_feature</IconPath>
<Description>
Showcases how to add Axis-Drag scaling to a SciChartSurface using the YAxisDragModifier and XAxisDragModifier. ChartModifiers can be added to the SciChartSurface via the SciChartSurface.ChartModifier property, or via a ModifierGroup
</Description>
<FileName>DragAxisToScaleChartFragment</FileName>
<Features>
<Features>Zoom</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Pan_and_Zoom_a_Chart.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Pan and Zoom a Chart</Title>
<IconPath>example_pan_modifier</IconPath>
<Description>
Demonstrates using the ZoomPanModifier, part of the ChartModifier API, which allows panning the chart while dragging.
</Description>
<FileName>PanAndZoomChartFragment</FileName>
<Features>
<Features>Pan</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2018. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Simple_3D_Chart_Sandbox.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Simple 3D Chart Sandbox</Title>
<IconPath>ic_lines_feature</IconPath>
<Description>
Generates 3D Chart.
</Description>
<FileName>Chart3DSandboxFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>false</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2018. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Date_Axis3D.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Date Axis3D</Title>
<IconPath>ic_axes3d_feature</IconPath>
<Description>
Demonstrates how to use DateAxis3D
</Description>
<FileName>DateAxis3DFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2018. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Logarithmic_Axis3D.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Logarithmic Axis3D</Title>
<IconPath>ic_axes3d_feature</IconPath>
<Description>
Demonstrates how to use LogarithmicNumericAxis3D
</Description>
<FileName>LogarithmicAxis3DFragment</FileName>
<Features>
<Features>Line</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>
@@ -0,0 +1,28 @@
<!--*************************************************************************-->
<!-- SCICHART® Copyright SciChart Ltd. 2011-2018. All rights reserved. -->
<!-- -->
<!-- Web: http://www.scichart.com -->
<!-- Support: support@scichart.com -->
<!-- Sales: sales@scichart.com -->
<!-- -->
<!-- Custom_Free_Surface_Chart_3D.xml is part of the SCICHART® Examples. Permission is hereby granted -->
<!-- to modify, create derivative works, distribute and publish any part of this source -->
<!-- code whether for commercial, private or personal use. -->
<!-- -->
<!-- The SCICHART® examples are distributed in the hope that they will be useful, but -->
<!-- without any warranty. It is provided "AS IS" without warranty of any kind, either -->
<!-- expressed or implied. -->
<!--*************************************************************************-->
<ExampleDefinition>
<Title>Create Custom FreeSurface Chart3D</Title>
<IconPath>ic_surface3d_feature</IconPath>
<Description>
The Closed Mesh 3D chart demo shows how to create closed mesh using the SciChart 3D Component.
</Description>
<FileName>CustomFreeSurface3DChartFragment</FileName>
<Features>
<Features>Scatter3D</Features>
</Features>
<IsVisible>true</IsVisible>
</ExampleDefinition>

Some files were not shown because too many files have changed in this diff Show More