scichart

SciChart - Accurate placement of rotated axis labels

这一生的挚爱 提交于 2020-01-06 03:32:09
问题 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, rotating the labels caused them to stick upwards into the graph. I need them below the axis. I've tried everything I could find in the API that I thought might help me: a TranslateTransform - I tried moving both X and Y both ways. No result.

SciChart went Maximum Plaid after updating to latest version

你。 提交于 2019-12-24 04:21:52
问题 I have updated SciChart from version 3.31 to the latest version (4.2.2.9777) and for some reason it has caused every instance of a SciChart surface in my application to have this strange plaid background (see attached pictures). While it is festive, I don't think the customer would approve. I have no idea what's causing this. This is all we're using in terms of styling: 1. A Background: Background="{DynamicResource {x:Static theme:Brushes.BackgroundBrushKey}}" A GridLinesPanelStyle: <Style x

Implicit styles not working in SciCharts WPF?

ⅰ亾dé卋堺 提交于 2019-12-13 03:19:44
问题 I'm trying to set some implicit styles on the AxisPane of SciCharts -- just even to change a background color, ala: <Style TargetType="{x:Type SciCharts:AxisPanel}"> <Setter Property="Background" Value="Red"></Setter> </Style> I've tried placing the style in the Application.Resources, inside the SciChartSurface.Resources, in a UserControl.Resources, and have had absolutely no luck. 回答1: The issue was that the AxisPanel was missing DefaultStyleKey and because of various properties set by

SciChart: Custom RolloverModifierLabel for multiple DataSeries bound from code

不打扰是莪最后的温柔 提交于 2019-12-11 03:23:59
问题 Before I updated to the latest version of SciChart, I had this custom rollover modifier that displayed multiple values for any given point I "rolled over". It was implemented like this: <sci:RolloverModifier DrawVerticalLine="True" ShowTooltipOn="Always" SourceMode="AllVisibleSeries" TooltipLabelTemplate="{StaticResource RolloverLabelTemplate}" /> RolloverLabelTemplate was a ControlTemplate: <ControlTemplate x:Key="RolloverLabelTemplate" TargetType="sci:TemplatableControl"> <Grid> ... Now the

SciChart Android Real Time Graphing: How to maximize graphing speed?

假装没事ソ 提交于 2019-12-09 18:58:32
问题 I'm writing a real time graphing app using Scichart for android. I've been using FastLineRenderableSeries as a wrapper for my data series But I'm wondering what other techniques with Android SciChart exist in order to maximize graphing speed? Particularly I've noticed a decrease in performance when I use IXyDataSeries and increase the x axis size to 100,000 pts from 10,000. The speed of the graphing stays consistently fast until I've added about 90,000 points to my IXyDataSeries . Thanks guys

SciChart - showing labels for all ticks

十年热恋 提交于 2019-12-07 11:45:30
问题 I'm reworking existing functionality to use SciChart. I need the resulting graph to look identical to original solution (or as close as possible). [edit: had to redact the image due to possible client IP issues] In the screenshot you can see where I got so far (top) compared to the old solution (bottom). I got stuck trying to make the labels work. I implemented a custom label provider as described here http://www.scichart.com/screenshots-xps-printing-x-axis-text-labels/ (I basically just took

SciChart - showing labels for all ticks

你。 提交于 2019-12-05 19:01:59
I'm reworking existing functionality to use SciChart. I need the resulting graph to look identical to original solution (or as close as possible). [edit: had to redact the image due to possible client IP issues] In the screenshot you can see where I got so far (top) compared to the old solution (bottom). I got stuck trying to make the labels work. I implemented a custom label provider as described here http://www.scichart.com/screenshots-xps-printing-x-axis-text-labels/ (I basically just took the CustomLabelProviderClass from there) I use the same list of labels as the old solution. What you