Questions tagged [scichart]

SciChart: Big Data chart library for JavaScript, WPF (Windows Presentation Foundation), iOS, macOS and Android

SciChart is a cross-platform WPF, iOS, Android and Xamarin Charting Library, which supports rendering of real-time charts with many millions of datapoints for applications and embedded systems that require high performance, rich interaction and smooth updates.

Capable of many rendering real-time charts with many millions of data-points, SciChart serves thousands of customers world-wide and is used enthusiastically in systems ranging from Automotive to Defence, Pharmaceutical to Oil & Gas, Investment Banking to Trading.

SciChart WPF 2D charts

SciChart WPF 3D charts

SciChart iOS/Android/Xamarin charts

175 questions
1
vote
1 answer

Two scicharts bound to the same SeriesSource, not updating

I'm using SciChart v3.1 and I have a requirement to display two charts on the same window (in different tabs), both displaying the same data. I'm plotting data "real time" (adding a new point every second), but I'm finding that new values don't…
Andrew Stephens
  • 9,413
  • 6
  • 76
  • 152
1
vote
1 answer

Error in SciChart Stacked Column Chart

http://www.scichart.com/questions/question/error-in-stacked-column-chart-when-one-data-series-has-no-data Current, I am working an WPF application which using SciChart to draw many charts including a Stacked column chart. In my case, there are many…
Ha Pham
  • 373
  • 3
  • 18
1
vote
1 answer

Limit zoom on DateTime axis

I am using SciChart with DateTimeAxis. My items are starting from 15 May 2016 8:30 AM and ending on 25 May 2016 8:30 AM. Initial value of VisibleRange is set this this range as well. I have also added VisibleRangeLimit again with same range. But…
Samvel Siradeghyan
  • 3,523
  • 3
  • 30
  • 49
1
vote
1 answer

Crashes loading surface when deployed on non-development machine

I've just coped a release version of my application onto a fresh non-development machine and I've found whenever a Scichart surface loads the program crashes with the standard "Application has stopped working: A problem caused the program to stop…
Joe
  • 6,773
  • 2
  • 47
  • 81
1
vote
1 answer

SciChart - show hierarchical list in axis legend

I have data seris that are grouped hierarchically. I need the chart legend to reflect this structure (see screenshot) [edit: image removed to prevent potential client IP issues] Switching off a group should naturally switch off all its child…
Shaggydog
  • 3,456
  • 7
  • 33
  • 50
1
vote
1 answer

SciChart - Accurate placement of rotated axis labels

Following up on my question from yesterday: SciChart - showing labels for all ticks Thanks to the answer I was able to get the label density where I needed it. But I still have problems with label placement. As you can see in the screenshot,…
Shaggydog
  • 3,456
  • 7
  • 33
  • 50
1
vote
1 answer

Show Tooltip on top of Axis and Scroll bar

I am showing tooltip with CursorModifier. My tooltip bigger than SciChartSurface and I am using ClipModifierSurface="False" in order to show whole tooltip. But in this case axis labels and scroll bar are on top of tooltip. Described problem can be…
Samvel Siradeghyan
  • 3,523
  • 3
  • 30
  • 49
1
vote
1 answer

Swap scroll bar and X axis labels

I am using trial version of SciChart and doing some tests. I need to bring scroll bar on top of X axis. After some research and parsing visual tree, I am planning to change style of SciChartSurface and replace axis and scroll bar, which are placed…
Samvel Siradeghyan
  • 3,523
  • 3
  • 30
  • 49
1
vote
0 answers

Labels positions

I have scichart graph. The Scichart label is hidden because of too much digits. how to make it visible? Maybe margin it some pixels left? How to control the margin of label through xaml or code behind? the xaml i wrote for the graph :
sci chart
  • 53
  • 2
1
vote
1 answer

Making zooms shortcuts in SciChart WPF

1) I want to create zoom shortcuts- 5 minutes before. 10 minutes hour and 24 hours from the lasttick. I made this code and it doesnt work right. what should i fix? ZoomOptions = new List { new ZoomOption("5M",…
Ruthie
  • 21
  • 4
1
vote
1 answer

SciChart: how to move a chart with RenderTransform?

I am trying to move a vertical line that represents the time advance. This is the code for this vertical line creation: XAML:
1
vote
1 answer

SciChart ITickProvder.Init method is never called

I'm setting a custom ITickProvider on a NumericAxis: var yaxis = new NumericAxis(); yaxis.TickProvider = new MyTickProvider(); At runtime the ITickProvider.Init method is never called: public class MyTickProvider : ITickProvider { …
Robin
  • 2,278
  • 3
  • 26
  • 46
1
vote
1 answer

how to mark ellipse point marker with a circle

I am trying to highlight the ellipse point marker when the mouse is middle clicked on the marker. I want to redraw the marker when the graph is zoomed or panned with the point marker selection chart modifier(PointMarkerSelectionModifier). How do I…
TrustyCoder
  • 4,749
  • 10
  • 66
  • 119
1
vote
2 answers

Winforms or WPF line chart library that does not impose a limit on how far I can zoom into data subsets?

A lot of chart libraries (Winforms and WPF) limit the granularity seen when zooming into a chart. I generate charts containing millions of data points, time stamped at the millisecond level, and while I am not interested in seeing all data points on…
Matt
  • 7,004
  • 11
  • 71
  • 117
0
votes
1 answer

SciChart throws an exception on new axis insertion

I have two AxisCollections: private AxisCollection _xAxes = new AxisCollection(); public AxisCollection XAxes { get => _xAxes; set { _xAxes = value; OnPropertyChanged("XAxes"); } …
Arli Chokoev
  • 521
  • 6
  • 22