When I try to bind VisibleRange as a simple binding on the XAxis it works perfectly.
<scichart:SciChartSurface.XAxis>
<scichart:NumericAxis AxisTitle="Tempo (s)"
VisibleRange="{Binding XVisibleRange, Mode=TwoWay}"/>
</scichart:SciChartSurface.XAxis>
But, in my case I have only one chart beeing displayed but two “RenderableSeries” in which only one of them is displayed, accordingly to the user selection. I use triggers for this and it works like a charm.
<scichart:SciChartSurface.Resources>
<Style TargetType="{x:Type scichart:SciChartSurface}">
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=DAQ1_Selected, Path=IsChecked}" Value="true">
<Setter Property="RenderableSeries" Value="{scichart:SeriesBinding RenderableSeriesViewModels[0]}"/>
</DataTrigger>
<DataTrigger Binding="{Binding ElementName=DAQ1_Selected, Path=IsChecked}" Value="false">
<Setter Property="RenderableSeries" Value="{scichart:SeriesBinding RenderableSeriesViewModels[1]}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</scichart:SciChartSurface.Resources>
Now I’m trying to set the “VisibleRange” of each “RenderableSeries” with triggers but I cannot achieve that because there is no option to binding on the setter.
<scichart:SciChartSurface.XAxis>
<scichart:NumericAxis AxisTitle="Tempo (s)"
GrowBy="0.01,0.01">
<Style TargetType="{x:Type scichart:NumericAxis}">
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=DAQ1_Selected, Path=IsChecked}" Value="true">
<Setter Property="VisibleRange" Value="{scichart:AxesBinding XVisibleRange[0], Mode=TwoWay}" />
</DataTrigger>
<DataTrigger Binding="{Binding ElementName=DAQ1_Selected, Path=IsChecked}" Value="false">
<Setter Property="VisibleRange" Value="{scichart:AxesBinding XVisibleRange[1], Mode=TwoWay}" />
</DataTrigger>
</Style.Triggers>
</Style>
</scichart:NumericAxis>
</scichart:SciChartSurface.XAxis>
On the “value” of Setter I have only the following options:
- AnnotationsBinding AxisBindingBinding MultiBindingCompatible
SeriesBinding ThemeBinding VerticalLinesBinding
My question is:
Is there a way to binding “VisibleRange” on “Style.Triggers”?
Thank you,
Eduardo Arruda
- Eduardo Arruda asked 6 months ago
- last active 6 months ago
import { MouseWheelZoomModifier } from "scichart/Charting/ChartModifiers/MouseWheelZoomModifier";
import { ZoomExtentsModifier } from "scichart/Charting/ChartModifiers/ZoomExtentsModifier";
import { ZoomPanModifier } from "scichart/Charting/ChartModifiers/ZoomPanModifier";
import { XyDataSeries } from "scichart/Charting/Model/XyDataSeries";
import { NumericAxis } from "scichart/Charting/Visuals/Axis/NumericAxis";
import { FastLineRenderableSeries } from "scichart/Charting/Visuals/RenderableSeries/FastLineRenderableSeries";
import { SciChartSurface } from "scichart/Charting/Visuals/SciChartSurface";
import { NumberRange } from "scichart/Core/NumberRange";
import { Point } from "scichart/Core/Point";
import { EAnimationType } from "scichart/types/AnimationType";
import { ShadowEffect } from "scichart/Charting/Visuals/RenderableSeries/ShadowEffect";
import { SciChartJSLightTheme } from "scichart/Charting/Themes/SciChartJSLightTheme";
import { SciChartJSDarkTheme } from "scichart/Charting/Themes/SciChartJSDarkTheme";
import { EAutoRange } from "scichart/types/AutoRange";
async function initSciChart() {
const { sciChartSurface, wasmContext } = await SciChartSurface.create(
"scichart-root"
);
// Create an X,Y Axis and add to the chart
const xAxis = new NumericAxis(wasmContext);
const yAxis = new NumericAxis(wasmContext, {visibleRange: new NumberRange(0, 11)});
//const yAxis = new NumericAxis(wasmContext, {visibleRange: new NumberRange(0, 10)});
// , {autoRange: EAutoRange.Once}
sciChartSurface.xAxes.add(xAxis);
sciChartSurface.yAxes.add(yAxis);
// Create some data and set on a line series
const xyData = new XyDataSeries(wasmContext);
for (let i = 0; i < 250; i++) {
xyData.append(i, 0);
// xyData.append(i, Math.sin(i * 0.1));
}
sciChartSurface.renderableSeries.add(
new FastLineRenderableSeries(wasmContext, { dataSeries: xyData })
);
}
initSciChart();
Visible Range is not working correctly. I found two cases getting the issue.
Case 1: visibleRange: new NumberRange(0, 10) -> if the values are 0 and 10 then the chart showing auto mode.
Case 2: xyData.append(i, 0) -> if all the values are 0 then its showing line on middle even the value is 0 to any number.
Please check the cases has some issues…
- Arun Surendran asked 1 year ago
- last active 1 year ago
Having used v3.1 for 9 years, I always found working with visible ranges to be a little “unwieldy” (unless I’ve been missing something all this time!). So after migrating to 6.5 I’ve been wondering if there have been any improvements that I can utilise. This is typically how I do things:
Most of my charts use pan & zoom modifiers, therefore AutoRange is set to “Never”, while the VM will expose (say) ‘DoubleRange’ properties for both the x-axis and y-axis ranges, bound to the ‘VisibleRange’ property of the axes in the view. These VM properties are usually instantiated after populating the data series (using the X & Y min/max in some way). The VM also exposes properties that are clones of these “initial” ranges.
In addition to the pan & zoom modifiers, I also use a custom ZoomExtentsModifier that lets a user double-click the chart to restore the axes back to those “initial” ranges. The custom class simply raises an event when the mouse is double clicked, and the event handler (in the view’s code-behind) does something like the following:
var vm = (MyViewModel)DataContext;
xaxis.AnimateVisibleRangeTo(vm.InitialXAxisRange, new TimeSpan(0, 0, 0, 0, 500));
yaxis.AnimateVisibleRangeTo(vm.InitialYAxisRange, new TimeSpan(0, 0, 0, 0, 500));
So in a nutshell, this is how I’ve handled visible ranges all this time – to provide pan & zoom plus the custom “restore zoom” functionality. It’s quite a lot of plumbing/boilerplate/duplicate code, across dozens of charts/views/VMs in several applications, so is there any way to simplify any aspect of this?
- Andrew Stephens asked 1 year ago
- last active 1 year ago
The actual visible range for x axis will not be applied if I set the range to 0 to 10. But if I try a different number like 8, 9, 11, they all works fine. Would you please debug this simple code on local host and see if the problem can be reproduced? I’m using the SciChart JS version 2.0.2146.
import {SciChartSurface} from "scichart/Charting/Visuals/SciChartSurface";
import {NumericAxis} from "scichart/Charting/Visuals/Axis/NumericAxis";
import {FastLineRenderableSeries} from "scichart/Charting/Visuals/RenderableSeries/FastLineRenderableSeries";
import {XyDataSeries} from "scichart/Charting/Model/XyDataSeries";
import {EAxisAlignment} from "scichart/types/AxisAlignment";
import {NumberRange} from "scichart/Core/NumberRange";
import {MouseWheelZoomModifier} from "scichart/Charting/ChartModifiers/MouseWheelZoomModifier";
import {RubberBandXyZoomModifier} from "scichart/Charting/ChartModifiers/RubberBandXyZoomModifier";
import {ZoomPanModifier} from "scichart/Charting/ChartModifiers/ZoomPanModifier";
import {ZoomExtentsModifier} from "scichart/Charting/ChartModifiers/ZoomExtentsModifier";
import {EXyDirection} from "scichart/types/XyDirection";
async function initSciChart() {
// ecg
let ecg = [-0.020,-0.020,-0.003,0.006,-0.006,-0.027,-0.037,-0.048,-0.044,-0.038,-0.038,-0.039,-0.042,-0.045,-0.061,-0.075,-0.070,-0.062,-0.057,-0.059,-0.065,-0.060,-0.041,-0.029,-0.029,-0.032,-0.040,-0.030,-0.011,-0.022,-0.043,-0.037,-0.019,-0.018,-0.029,-0.037,-0.032,-0.031,-0.051,-0.061,-0.057,-0.047,-0.043,-0.057,-0.072,-0.066,-0.052,-0.055,-0.046,-0.038,-0.045,-0.046,-0.036,-0.025,-0.021,-0.022,-0.024,-0.056,-0.110,-0.129,-0.077,0.080,0.332,0.642,0.944,1.141,1.207,1.045,0.625,0.167,-0.055,-0.069,-0.047,-0.028,-0.028,-0.037,-0.039,-0.037,-0.034,-0.041,-0.046,-0.042,-0.042,-0.048,-0.045,-0.037,-0.034,-0.040,-0.049,-0.053,-0.064,-0.073,-0.068,-0.061,-0.068,-0.083,-0.083,-0.075,-0.074,-0.076,-0.070,-0.062,-0.065,-0.073,-0.066,-0.050,-0.049,-0.057,-0.052,-0.039,-0.036,-0.041,-0.037,-0.030,-0.034,-0.039,-0.034,-0.025,-0.020,-0.020,-0.017,-0.007,0.004,0.014,0.026,0.038,0.044,0.043,0.035,0.028,0.029,0.026,0.020,0.018,0.011,0.004,0.001,0.003,0.004,0.008,0.008,0.006,0.003,0.001,0.001,-0.003,-0.010,-0.016,-0.014,-0.015,-0.021,-0.029,-0.029,-0.022,-0.021,-0.028,-0.028,-0.027,-0.028,-0.026,-0.025,-0.025,-0.026,-0.025,-0.018,-0.011,-0.002,0.001,-0.002,-0.004,0.000,0.005,0.004,0.003,0.007,0.008,0.002,0.004,0.004,0.001,-0.002,-0.004,-0.001,0.003,0.001,-0.002,-0.001,0.003,0.002,-0.003,-0.001,0.001,-0.005,-0.010,-0.014,-0.018,-0.018,-0.016,-0.011,-0.016,-0.026,-0.027,-0.027,-0.023,-0.025,-0.032,-0.034,-0.025,-0.020,-0.016,-0.008,-0.008,-0.017,-0.019,-0.013,-0.010,-0.013,-0.013,-0.010,-0.012,-0.020,-0.023,-0.018,-0.010,-0.006,-0.011,-0.014,-0.014,-0.014,-0.012,-0.010,-0.007,-0.007,-0.005,0.003,0.005,0.003,0.002,0.010,0.009,0.003,-0.001,-0.001,0.002,-0.002,-0.009,-0.014,-0.010,-0.007,-0.012,-0.020,-0.025,-0.021,-0.021,-0.022,-0.023,-0.025,-0.028,-0.027,-0.021,-0.017,-0.015,-0.013,-0.009,-0.001,0.004,0.002,-0.001,-0.001,-0.007,-0.017,-0.019,-0.018,-0.023,-0.033,-0.033,-0.029,-0.029,-0.029,-0.024,-0.013,-0.008,-0.011,-0.011,-0.003,-0.000,-0.005,-0.004,0.003,0.003,0.000,-0.000,0.003,0.003,0.003,0.005,0.006,0.002,0.000,-0.001,-0.005,-0.015,-0.025,-0.026,-0.025,-0.027,-0.032,-0.033,-0.031,-0.032,-0.033,-0.029,-0.023,-0.020,-0.014,-0.012,-0.013,-0.019,-0.020,-0.016,-0.010,-0.007,-0.014,-0.021,-0.027,-0.030,-0.029,-0.028,-0.023,-0.024,-0.027,-0.029,-0.032,-0.034,-0.031,-0.028,-0.026,-0.027,-0.024,-0.019,-0.016,-0.017,-0.016,-0.011,-0.006,-0.007,-0.009,-0.002,0.009,0.013,0.010,0.005,0.001,-0.002,-0.006,-0.010,-0.010,-0.011,-0.016,-0.027,-0.031,-0.034,-0.043,-0.069,-0.121,-0.160,-0.145,-0.047,0.157,0.435,0.733,0.945,1.056,1.017,0.754,0.373,0.056,-0.045,-0.032,-0.019,-0.024,-0.038,-0.052,-0.053,-0.050,-0.052,-0.054,-0.057,-0.060,-0.065,-0.066,-0.062,-0.064,-0.068,-0.068,-0.065,-0.062,-0.065,-0.063,-0.060,-0.056,-0.054,-0.056,-0.058,-0.062,-0.072,-0.079,-0.078,-0.074,-0.076,-0.074,-0.071,-0.069,-0.064,-0.059,-0.060,-0.060,-0.063,-0.064,-0.062,-0.061,-0.061,-0.062,-0.061,-0.063,-0.068,-0.068,-0.059,-0.048,-0.041,-0.033,-0.020,-0.010,0.002,0.011,0.017,0.021,0.022,0.026,0.028,0.025,0.017,0.012,0.010,0.011,0.008,0.004,0.006,0.012,0.013,0.011,0.008,0.002,-0.003,-0.008,-0.011,-0.014,-0.016,-0.018,-0.019,-0.017,-0.020,-0.023,-0.023,-0.020,-0.019,-0.018,-0.011,-0.006,-0.006,-0.010,-0.010,-0.009,-0.009,-0.012,-0.015,-0.017,-0.017,-0.017,-0.013,-0.013,-0.013,-0.017,-0.016,-0.007,-0.005,-0.010,-0.014,-0.016,-0.013,-0.004,0.001,0.000,-0.001,-0.001,-0.001,-0.004,-0.006,-0.010,-0.016,-0.017,-0.021,-0.030,-0.033,-0.027,-0.025,-0.032,-0.034,-0.034,-0.034,-0.033,-0.036,-0.043,-0.047,-0.040,-0.032,-0.024,-0.019,-0.020,-0.018,-0.009,-0.001,0.000,-0.003,-0.011,-0.016,-0.013,-0.013,-0.028,-0.042,-0.023,-0.004,-0.017,-0.046,-0.057,-0.043,-0.023,-0.023,-0.050,-0.069,-0.053,-0.021,-0.013,-0.040,-0.057,-0.046,-0.025,-0.018,-0.039,-0.058,-0.049,-0.033,-0.029,-0.027,-0.021,-0.023,-0.029,-0.032,-0.040,-0.050,-0.041,-0.020,-0.019,-0.035,-0.037,-0.034,-0.035,-0.033,-0.028,-0.031,-0.027,-0.014,-0.021,-0.050,-0.094,-0.127,-0.123,-0.049,0.143,0.418,0.746,1.004,1.113,1.060,0.766,0.327,0.014,-0.071,-0.073,-0.061,-0.036,-0.018,-0.027,-0.055,-0.076,-0.073,-0.046,-0.028,-0.045,-0.074,-0.078,-0.053,-0.030,-0.035,-0.053,-0.054,-0.044,-0.042,-0.045,-0.052,-0.068,-0.078,-0.066,-0.058,-0.069,-0.085,-0.087,-0.069,-0.057,-0.064,-0.072,-0.076,-0.079,-0.080,-0.064,-0.052,-0.064,-0.075,-0.066,-0.040,-0.028,-0.047,-0.061,-0.045,-0.020,-0.015,-0.018,-0.014,-0.004,0.013,0.029,0.032,0.023,0.012,0.016,0.040,0.055,0.040,0.016,0.014,0.021,0.009,-0.015,-0.027,-0.027,-0.024,-0.023,-0.032,-0.047,-0.056,-0.043,-0.015,-0.009,-0.033,-0.051,-0.039,-0.015,-0.009,-0.026,-0.037,-0.032,-0.031,-0.030,-0.043,-0.064,-0.065,-0.056,-0.043,-0.031,-0.045,-0.062,-0.064,-0.057,-0.054,-0.046,-0.035,-0.050,-0.069,-0.065,-0.044,-0.035,-0.047,-0.055,-0.050,-0.042,-0.046,-0.050,-0.052,-0.057,-0.053,-0.042,-0.048,-0.065,-0.064,-0.060,-0.063,-0.058,-0.045,-0.035,-0.028,-0.039,-0.050,-0.038,-0.023,-0.035,-0.045,-0.040,-0.029,-0.014,-0.005,-0.013,-0.026,-0.037,-0.041,-0.034,-0.027,-0.028,-0.033,-0.032,-0.036,-0.047,-0.055,-0.061,-0.054,-0.050,-0.049,-0.048,-0.051,-0.046,-0.041,-0.040,-0.067,-0.121,-0.154,-0.120,0.020,0.260,0.554,0.867,1.103,1.217,1.141,0.780,0.277,-0.036,-0.081,-0.052,-0.036,-0.025,-0.034,-0.054,-0.056,-0.049,-0.049,-0.055,-0.059,-0.066,-0.079,-0.074,-0.060,-0.059,-0.060,-0.056,-0.048,-0.045,-0.053,-0.050,-0.037,-0.037,-0.044,-0.048,-0.046,-0.041,-0.041,-0.050,-0.063,-0.073,-0.082,-0.085,-0.077,-0.074,-0.078,-0.082,-0.083,-0.083,-0.085,-0.077,-0.073,-0.066,-0.062,-0.059,-0.049,-0.032,-0.014,-0.001,0.009,0.013,0.019,0.026,0.035,0.052,0.064,0.061,0.059,0.063,0.059,0.039,0.017,-0.000,-0.018,-0.029,-0.031,-0.037,-0.045,-0.049,-0.051,-0.053,-0.053,-0.056,-0.061,-0.059,-0.057,-0.059,-0.061,-0.061,-0.065,-0.072,-0.071,-0.066,-0.061,-0.055,-0.048,-0.044,-0.048,-0.047,-0.044,-0.049,-0.049,-0.042,-0.047,-0.054,-0.051,-0.047,-0.041,-0.038,-0.040,-0.040,-0.042,-0.044,-0.044,-0.043,-0.043,-0.043,-0.039,-0.040,-0.043,-0.042,-0.037,-0.040,-0.052,-0.056,-0.050,-0.043,-0.040,-0.045,-0.048,-0.044,-0.038,-0.033,-0.031,-0.023,-0.023,-0.027,-0.024,-0.022,-0.022,-0.029,-0.035,-0.036,-0.040,-0.065,-0.119,-0.160,-0.150,-0.057,0.147,0.419,0.726,0.984,1.129,1.123,0.884,0.471,0.095,-0.056,-0.048,-0.021,-0.018,-0.026,-0.034,-0.031,-0.026,-0.027,-0.026,-0.026,-0.028,-0.025,-0.031,-0.045,-0.048,-0.053,-0.055,-0.053,-0.052,-0.059,-0.065,-0.066,-0.064,-0.064,-0.070,-0.065,-0.057,-0.060,-0.065,-0.059,-0.055,-0.068,-0.069,-0.055,-0.052,-0.051,-0.049,-0.050,-0.051,-0.047,-0.041,-0.043,-0.043,-0.041,-0.044,-0.040,-0.035,-0.030,-0.023,-0.015,-0.003,0.006,0.017,0.028,0.038,0.045,0.044,0.036,0.032,0.028,0.020,0.012,0.006,-0.002,-0.009,-0.005,-0.003,-0.008,-0.007,0.002,-0.002,-0.015,-0.024,-0.031,-0.037,-0.039,-0.039,-0.035,-0.032,-0.038,-0.034,-0.023,-0.020,-0.020,-0.026,-0.032,-0.027,-0.029,-0.027,-0.026,-0.030,-0.031,-0.029,-0.024,-0.019,-0.019,-0.019,-0.016,-0.012,-0.011,-0.006,-0.002,-0.008,-0.016,-0.021,-0.025,-0.028,-0.031,-0.034,-0.034,-0.036,-0.041,-0.038,-0.031,-0.025,-0.030,-0.036,-0.034,-0.028,-0.022,-0.017,-0.008,-0.005,-0.008,-0.008,-0.008,-0.016,-0.024,-0.019,-0.009,-0.009,-0.013,-0.016,-0.017,-0.020,-0.031,-0.042,-0.043,-0.042,-0.044,-0.046,-0.046,-0.051,-0.056,-0.049,-0.039,-0.034,-0.027,-0.021,-0.018,-0.017,-0.015,-0.010,-0.007,-0.004,0.003,0.004,0.001,0.002,-0.001,-0.002,-0.003,-0.007,-0.006,-0.011,-0.017,-0.022,-0.030,-0.031,-0.030,-0.033,-0.037,-0.036,-0.035,-0.035,-0.038,-0.035,-0.031,-0.033,-0.031,-0.024,-0.012,-0.004,-0.003,-0.003,0.003,0.001,-0.001,0.001,0.005,0.006,0.004,-0.001,-0.013,-0.023,-0.024,-0.026,-0.027,-0.028,-0.031,-0.033,-0.035,-0.040,-0.041,-0.038,-0.036,-0.037,-0.033,-0.029,-0.027,-0.021,-0.021,-0.022,-0.018,-0.010,-0.006,-0.005,-0.001,0.002,0.004,0.005,0.004,-0.002,-0.011,-0.013,-0.013,-0.013,-0.015,-0.011,-0.007,-0.011,-0.015,-0.036,-0.091,-0.137,-0.129,-0.031,0.172,0.439,0.732,0.948,1.063,1.027,0.746,0.336,0.027,-0.049,-0.015,0.013,0.008,-0.012,-0.020,-0.024,-0.033,-0.041,-0.043,-0.041,-0.046,-0.054,-0.053,-0.051,-0.056,-0.059,-0.060,-0.060,-0.060,-0.063,-0.065,-0.064,-0.066,-0.070,-0.070,-0.066,-0.064,-0.068,-0.065,-0.058,-0.059,-0.062,-0.059,-0.058,-0.063,-0.067,-0.064,-0.062,-0.065,-0.070,-0.075,-0.068,-0.064,-0.065,-0.061,-0.053,-0.051,-0.048,-0.041,-0.030,-0.021,-0.014,-0.006,0.004,0.010,0.015,0.024,0.035,0.036,0.031,0.027,0.026,0.026,0.018,0.011,0.010,0.005,0.001,0.003,0.006,0.004,-0.002,-0.006,-0.008,-0.009,-0.009,-0.002,0.001,0.002,0.005,0.008,0.007,0.002,-0.005,-0.006,-0.008,-0.013,-0.017,-0.017,-0.014,-0.010,-0.010,-0.009,0.000,0.004,0.001,0.004,0.007,0.002,-0.006,-0.005,0.008,0.012,-0.002,-0.017,-0.013,0.002,-0.001,-0.021,-0.033,-0.026,-0.018,-0.017,-0.021,-0.017,-0.010,-0.014,-0.029,-0.031,-0.012,0.001,-0.008,-0.025,-0.027,-0.009,0.002,-0.014,-0.032,-0.031,-0.018,-0.010,-0.024,-0.039,-0.034,-0.027,-0.023,-0.030,-0.044,-0.049,-0.039,-0.038,-0.062,-0.084,-0.082,-0.061,-0.046,-0.047,-0.051,-0.050,-0.028,0.000,-0.002,-0.031,-0.047,-0.036,-0.014,-0.010,-0.033,-0.043,-0.032,-0.018,-0.012,-0.023,-0.036,-0.028,-0.015,-0.026,-0.051,-0.059,-0.053,-0.044,-0.043,-0.051,-0.057,-0.045,-0.023,-0.032,-0.060,-0.063,-0.038,-0.014,-0.017,-0.045,-0.048,-0.023,0.003,0.001,-0.028,-0.045,-0.038,-0.018,-0.003,-0.020,-0.047,-0.051,-0.024,0.005,-0.008,-0.047,-0.054,-0.030,-0.005,-0.010,-0.050,-0.099,-0.147,-0.160,-0.102,0.063,0.300,0.574,0.866,1.077,1.171,1.011,0.556,0.095,-0.102,-0.079,-0.019,-0.009,-0.039,-0.054,-0.044,-0.036,-0.052,-0.057,-0.056,-0.067,-0.072,-0.057,-0.043,-0.049,-0.062,-0.059,-0.045,-0.036,-0.053,-0.076,-0.073,-0.064,-0.063,-0.064,-0.061,-0.062,-0.067,-0.069,-0.070,-0.068,-0.068,-0.071,-0.074,-0.072,-0.070,-0.068,-0.063,-0.058,-0.070,-0.089,-0.084,-0.064,-0.065,-0.076,-0.071,-0.063,-0.057,-0.042,-0.022,-0.008,-0.002,0.008,0.020,0.031,0.040,0.049,0.065,0.076,0.072,0.055,0.042,0.038,0.034,0.022,0.008,-0.009,-0.021,-0.027,-0.042,-0.057,-0.056,-0.062,-0.078,-0.082,-0.068,-0.063,-0.071,-0.072,-0.048,-0.031,-0.038,-0.039,-0.029,-0.022,-0.013,-0.012,-0.018,-0.025,-0.025,-0.016,-0.012,-0.024,-0.034,-0.031,-0.030,-0.042,-0.057,-0.057,-0.058,-0.068,-0.082,-0.087,-0.084,-0.084,-0.080,-0.068,-0.065,-0.067,-0.058,-0.047,-0.041,-0.032,-0.018,-0.008,-0.019,-0.029,-0.020,-0.012,-0.015,-0.018,-0.021,-0.021,-0.025,-0.030,-0.029,-0.029,-0.035,-0.053,-0.057,-0.056,-0.064,-0.069,-0.067,-0.088,-0.147,-0.187,-0.164,-0.046,0.181,0.484,0.819,1.079,1.208,1.161,0.875,0.426,0.064,-0.052,-0.042,-0.024,-0.026,-0.040,-0.053,-0.062,-0.061,-0.065,-0.069,-0.070,-0.075,-0.081,-0.082,-0.081,-0.076,-0.076,-0.081,-0.078,-0.078,-0.080,-0.080,-0.078,-0.076,-0.077,-0.080,-0.077,-0.072,-0.073,-0.074,-0.069,-0.070,-0.078,-0.080,-0.077,-0.075,-0.070,-0.066,-0.064,-0.063,-0.061,-0.063,-0.065,-0.062,-0.060,-0.056,-0.047,-0.043,-0.038,-0.026,-0.010,0.003,0.011,0.016,0.022,0.031,0.035,0.035,0.037,0.031,0.020,0.006,-0.002,-0.004,-0.011,-0.023,-0.034,-0.041,-0.048,-0.053,-0.047,-0.034,-0.029,-0.029,-0.026,-0.025,-0.035,-0.048,-0.048,-0.040,-0.041,-0.045,-0.042,-0.043,-0.052,-0.057,-0.059,-0.066,-0.071,-0.066,-0.058,-0.056,-0.061,-0.059,-0.052,-0.045,-0.044,-0.048,-0.045,-0.038,-0.034,-0.031,-0.023,-0.024,-0.032,-0.034,-0.029,-0.027,-0.029,-0.030,-0.031,-0.041,-0.053,-0.053,-0.053,-0.052,-0.053,-0.056,-0.053,-0.050,-0.051,-0.055,-0.052,-0.049,-0.047,-0.046,-0.038,-0.029,-0.028,-0.040,-0.077,-0.124,-0.137,-0.078,0.103,0.369,0.669,0.940,1.106,1.135,0.950,0.580,0.182,-0.039,-0.070,-0.053,-0.042,-0.045,-0.058,-0.064,-0.059,-0.056,-0.061,-0.058,-0.045,-0.040,-0.050,-0.053,-0.042,-0.037,-0.046,-0.052,-0.048,-0.053,-0.062,-0.063,-0.061,-0.071,-0.084,-0.088,-0.086,-0.087,-0.091,-0.094,-0.093,-0.091,-0.092,-0.085,-0.078,-0.076,-0.075,-0.070,-0.065,-0.060,-0.053,-0.046,-0.041,-0.040,-0.039,-0.035,-0.026,-0.025,-0.024,-0.017,-0.012,-0.009,-0.007,-0.001,0.010,0.016,0.022,0.029,0.028,0.022,0.012,0.009,0.012,0.006,-0.002,-0.004,-0.003,-0.006,-0.009,-0.005,-0.004,-0.008,-0.012,-0.016,-0.021,-0.028,-0.032,-0.038,-0.042,-0.042,-0.041,-0.038,-0.037,-0.034,-0.028,-0.026,-0.027,-0.025,-0.019,-0.019,-0.028,-0.032,-0.028,-0.026,-0.027,-0.027,-0.019,-0.009,-0.003,-0.000,0.004,0.004,0.002,-0.001,-0.005,-0.009,-0.021,-0.033,-0.030,-0.027,-0.033,-0.032,-0.024,-0.025,-0.031,-0.038,-0.031,-0.025,-0.026,-0.030,-0.028,-0.022,-0.029,-0.035,-0.035,-0.030,-0.032,-0.033,-0.031,-0.028,-0.033,-0.034,-0.029,-0.024,-0.022,-0.027,-0.024,-0.012,-0.013,-0.024,-0.026,-0.026,-0.032,-0.038,-0.033,-0.024,-0.025,-0.031,-0.033,-0.028,-0.029,-0.038,-0.035,-0.028,-0.035,-0.043,-0.044,-0.036,-0.035,-0.041,-0.037,-0.025,-0.021,-0.028,-0.032,-0.030,-0.035,-0.046,-0.049,-0.039,-0.029,-0.027,-0.020,-0.008,-0.004,-0.008,-0.019,-0.050,-0.102,-0.132,-0.100,0.039,0.269,0.553,0.838,1.019,1.101,0.987,0.618,0.195,-0.028,-0.051,-0.021,-0.007,-0.020,-0.034,-0.041,-0.044,-0.044,-0.047,-0.048,-0.043,-0.038,-0.044,-0.048,-0.046,-0.046,-0.048,-0.050,-0.046,-0.045,-0.049,-0.054,-0.058,-0.058,-0.059,-0.064,-0.062,-0.061,-0.069,-0.076,-0.074,-0.069,-0.069,-0.068,-0.069,-0.069,-0.071,-0.069,-0.057,-0.052,-0.052,-0.053,-0.050,-0.047,-0.047,-0.043,-0.037,-0.032,-0.025,-0.019,-0.016,-0.007,0.002,0.010,0.019,0.028,0.037,0.040,0.040,0.034,0.026,0.021,0.013,0.004,0.000,0.002,-0.003,-0.007,-0.006,-0.003,-0.004,-0.005,-0.003,-0.004,-0.014,-0.018,-0.011,-0.011,-0.018,-0.028,-0.032,-0.030,-0.030,-0.033,-0.034,-0.034,-0.037,-0.041,-0.038,-0.028,-0.021,-0.021,-0.024,-0.020,-0.016,-0.013,-0.008,-0.006,-0.007,-0.008,0.000,0.010,0.007,-0.008,-0.019,-0.007,0.003,-0.008,-0.023,-0.017,-0.008,-0.015,-0.031,-0.039,-0.040,-0.038,-0.036,-0.040,-0.048,-0.050,-0.036,-0.028,-0.042,-0.052,-0.042,-0.032,-0.037,-0.048,-0.047,-0.033,-0.026,-0.040,-0.051,-0.054,-0.054,-0.048,-0.054,-0.063,-0.063,-0.063,-0.061,-0.060,-0.062,-0.056,-0.045,-0.046,-0.052,-0.043,-0.025,-0.022,-0.035,-0.041,-0.031,-0.020,-0.025,-0.037,-0.043,-0.042,-0.032,-0.033,-0.053,-0.066,-0.062,-0.046,-0.053,-0.114,-0.176,-0.176,-0.096,0.084,0.329,0.623,0.907,1.088,1.130,0.911,0.470,0.065,-0.081,-0.055,-0.029,-0.035,-0.045,-0.047,-0.053,-0.065,-0.077,-0.077,-0.070,-0.061,-0.059,-0.067,-0.074,-0.076,-0.073,-0.054,-0.044,-0.063,-0.077,-0.065,-0.038,-0.035,-0.060,-0.074,-0.061,-0.049,-0.063,-0.078,-0.081,-0.085,-0.080,-0.073,-0.071,-0.071,-0.072,-0.080,-0.087,-0.084,-0.077,-0.081,-0.086,-0.083,-0.079,-0.071,-0.050,-0.044,-0.059,-0.062,-0.044,-0.021,-0.010,-0.012,-0.011,-0.007,-0.008,0.005,0.030,0.031,0.003,-0.008,0.003,0.020,0.022,-0.001,-0.026,-0.030,-0.020,-0.010,-0.011,-0.032,-0.052,-0.054,-0.045,-0.048,-0.057,-0.054,-0.051,-0.053,-0.064,-0.079,-0.076,-0.054,-0.051,-0.067,-0.070,-0.057,-0.041,-0.032,-0.034,-0.040,-0.045,-0.033,-0.012,-0.012,-0.029,-0.042,-0.041,-0.028,-0.022,-0.042,-0.066,-0.069,-0.058,-0.055,-0.063,-0.074,-0.080,-0.087,-0.111,-0.147,-0.163,-0.118,0.047,0.320,0.644,0.967,1.180,1.240,1.114,0.799,0.385,0.060,-0.048,-0.061,-0.055,-0.044,-0.046,-0.053,-0.067,-0.084,-0.092,-0.079,-0.074,-0.074,-0.068,-0.077,-0.086,-0.074,-0.062,-0.074,-0.086,-0.068,-0.049,-0.059,-0.071,-0.068,-0.066,-0.062,-0.052,-0.057,-0.084,-0.094,-0.076,-0.059,-0.074,-0.089,-0.074,-0.073,-0.090,-0.087,-0.073,-0.075,-0.071,-0.074,-0.085,-0.082,-0.062,-0.053,-0.065,-0.065,-0.055,-0.042,-0.028,-0.017,-0.008,0.000,0.007,0.012,0.013,0.014,0.010,0.004,0.003,-0.012,-0.024,-0.016,-0.018,-0.032,-0.034,-0.029,-0.027,-0.027,-0.023,-0.020,-0.016,-0.013,-0.022,-0.027,-0.028,-0.029,-0.031,-0.030,-0.035,-0.046,-0.050,-0.052,-0.054,-0.059,-0.063,-0.065,-0.063,-0.060,-0.060,-0.052,-0.042,-0.041,-0.044,-0.046,-0.046,-0.045,-0.040,-0.034,-0.042,-0.041,-0.030,-0.032,-0.034,-0.030,-0.026,-0.030,-0.035,-0.038,-0.036,-0.038,-0.042,-0.045,-0.042,-0.041,-0.039,-0.033,-0.033,-0.038,-0.041,-0.032,-0.024,-0.027,-0.030,-0.025,-0.018,-0.016,-0.018,-0.019,-0.019,-0.020,-0.020,-0.019,-0.020,-0.018,-0.020,-0.027,-0.022,-0.013,-0.016,-0.025,-0.026,-0.022,-0.027,-0.037,-0.040,-0.055,-0.105,-0.155,-0.158,-0.085,0.106,0.384,0.706,0.986,1.150,1.160,0.928,0.508,0.111,-0.051,-0.045,-0.016,-0.006,-0.016,-0.030,-0.032,-0.026,-0.029,-0.041,-0.045,-0.039,-0.038,-0.047,-0.056,-0.057,-0.060,-0.067,-0.068,-0.061,-0.062,-0.064,-0.063,-0.067,-0.069,-0.069,-0.065,-0.059,-0.057,-0.057,-0.056,-0.055,-0.054,-0.052,-0.049,-0.045,-0.051,-0.059,-0.055,-0.048,-0.047,-0.049,-0.052,-0.053,-0.057,-0.057,-0.052,-0.053,-0.058,-0.059,-0.053,-0.044,-0.035,-0.019,0.000,0.019,0.029,0.034,0.039,0.045,0.041,0.030,0.025,0.024,0.021,0.014,0.009,0.005,0.003,0.001,0.001,-0.000,-0.005,-0.006,-0.007,-0.007,-0.009,-0.012,-0.015,-0.018,-0.020,-0.019,-0.009,-0.003,-0.003,-0.008,-0.010,-0.008,-0.013,-0.019,-0.017,-0.008,-0.003,-0.003,-0.001,-0.002,-0.001,-0.003,-0.003,-0.006,-0.014,-0.022,-0.025,-0.023,-0.021,-0.020,-0.019,-0.019,-0.018,-0.021,-0.024,-0.019,-0.012,-0.007,-0.004,-0.002,-0.005,-0.006,-0.005,-0.001,-0.005,-0.015,-0.017,-0.013,-0.008,-0.011,-0.015,-0.014,-0.018,-0.024,-0.028,-0.029,-0.035,-0.037,-0.033,-0.030,-0.033,-0.032,-0.030,-0.027,-0.020,-0.018,-0.016,-0.015,-0.013,-0.009,-0.009,-0.015,-0.018,-0.019,-0.023,-0.023,-0.018,-0.021,-0.024,-0.022,-0.017,-0.013,-0.012,-0.012,-0.016,-0.022,-0.027,-0.033,-0.037,-0.039,-0.033,-0.024,-0.017,-0.012,-0.009,-0.005,-0.001,-0.000,-0.005,-0.003,-0.003,-0.008,-0.016,-0.026,-0.027,-0.025,-0.020,-0.019,-0.017,-0.017,-0.023,-0.024,-0.022,-0.019,-0.016,-0.014,-0.011,-0.011,-0.014,-0.011,-0.009,-0.011,-0.011,-0.011,-0.008,-0.003,-0.003,-0.004,-0.006,-0.011,-0.019,-0.022,-0.018,-0.019,-0.025,-0.026,-0.025,-0.027,-0.032,-0.031,-0.025,-0.024,-0.025,-0.023,-0.020,-0.018,-0.016,-0.016,-0.011,-0.009,-0.009,-0.007,-0.002,-0.003,-0.007,-0.007,-0.004,-0.003,-0.002,0.001,-0.002,-0.009,-0.017,-0.025,-0.060,-0.123,-0.149,-0.109,0.029,0.259,0.546,0.816,0.984,1.055,0.918,0.563,0.171,-0.039,-0.057,-0.029,-0.015,-0.021,-0.029,-0.030,-0.028,-0.029,-0.037,-0.041,-0.042,-0.042,-0.040,-0.040,-0.033,-0.028,-0.033,-0.039,-0.043,-0.048,-0.058,-0.065,-0.065,-0.068,-0.077,-0.081,-0.080,-0.077,-0.079,-0.079,-0.072,-0.067,-0.066,-0.066,-0.067,-0.068,-0.074,-0.075,-0.070,-0.067,-0.068,-0.064,-0.065,-0.067,-0.065,-0.061,-0.053,-0.048,-0.043,-0.038,-0.031,-0.028,-0.027,-0.021,-0.010,-0.000,0.005,0.014,0.022,0.024,0.026,0.031,0.035,0.034,0.030,0.020,0.016,0.013,0.006,0.000,-0.002,-0.005,-0.008,-0.009,-0.007,-0.007,-0.011,-0.013,-0.018,-0.024,-0.035,-0.042,-0.044,-0.045,-0.049,-0.048,-0.041,-0.035,-0.034,-0.032,-0.028,-0.029,-0.030,-0.029,-0.025,-0.021,-0.019,-0.012,-0.009,-0.011,-0.014,-0.015,-0.013,-0.016,-0.018,-0.020,-0.017,-0.017,-0.026,-0.036,-0.043,-0.046,-0.047,-0.047,-0.047,-0.050,-0.055,-0.058,-0.057,-0.058,-0.059,-0.059,-0.055,-0.053,-0.045,-0.034,-0.030,-0.028,-0.029,-0.029,-0.030,-0.033,-0.038,-0.039,-0.035,-0.037,-0.047,-0.054,-0.059,-0.065,-0.072,-0.074,-0.072,-0.071,-0.070,-0.066,-0.058,-0.052,-0.049,-0.050,-0.073,-0.127,-0.168,-0.149,-0.039,0.169,0.435,0.731,0.962,1.094,1.073,0.812,0.408,0.070,-0.053,-0.050,-0.032,-0.035,-0.051,-0.063,-0.066,-0.069,-0.076,-0.074,-0.067,-0.066,-0.072,-0.070,-0.064,-0.059,-0.059,-0.060,-0.053,-0.052,-0.059,-0.064,-0.061,-0.061,-0.068,-0.069,-0.064,-0.067,-0.075,-0.078,-0.071,-0.067,-0.077,-0.083,-0.078,-0.080,-0.093,-0.094,-0.081,-0.070,-0.068,-0.061,-0.051,-0.046,-0.050,-0.047,-0.033,-0.023,-0.022,-0.017,-0.002,0.009,0.014,0.022,0.032,0.042,0.043,0.042,0.043,0.041,0.035,0.026,0.022,0.014,-0.004,-0.021,-0.027,-0.035,-0.045,-0.050,-0.046,-0.043,-0.043,-0.043,-0.042,-0.039,-0.039,-0.040,-0.043,-0.045,-0.044,-0.045,-0.048,-0.045,-0.044,-0.052,-0.057,-0.057,-0.055,-0.052,-0.045,-0.050,-0.063,-0.070,-0.065,-0.054,-0.049,-0.058,-0.064,-0.058,-0.046,-0.040,-0.043,-0.043,-0.043,-0.041,-0.032,-0.027,-0.036,-0.041,-0.034,-0.025,-0.026,-0.038,-0.048,-0.041,-0.036,-0.048,-0.068,-0.073,-0.060,-0.061,-0.113,-0.178,-0.185,-0.101,0.100,0.371,0.660,0.902,1.053,1.093,0.925,0.572,0.181,-0.029,-0.042,-0.020,-0.027,-0.041,-0.039,-0.046,-0.065,-0.086,-0.087,-0.072,-0.065,-0.078,-0.094,-0.099,-0.095,-0.093,-0.089,-0.089,-0.087,-0.091,-0.091,-0.083,-0.070,-0.062,-0.062,-0.058,-0.058,-0.060,-0.056,-0.047,-0.048,-0.055,-0.057,-0.054,-0.054,-0.063,-0.075,-0.070,-0.063,-0.081,-0.094,-0.084,-0.077,-0.085,-0.091,-0.075,-0.050,-0.039,-0.042,-0.034,-0.015,-0.004,0.005,0.016,0.032,0.049,0.058,0.056,0.050,0.043,0.038,0.037,0.027,0.004,-0.017,-0.022,-0.027,-0.039,-0.054,-0.062,-0.058,-0.053,-0.057,-0.062,-0.061,-0.053,-0.054,-0.064,-0.059,-0.052,-0.051,-0.042,-0.035,-0.032,-0.030,-0.022,-0.027,-0.038,-0.034,-0.019,-0.007,-0.012,-0.031,-0.046,-0.046,-0.033,-0.022,-0.039,-0.062,-0.064,-0.056,-0.044,-0.045,-0.053,-0.049,-0.040,-0.036,-0.031,-0.026,-0.029,-0.034,-0.042,-0.071,-0.121,-0.138,-0.097,0.034,0.271,0.572,0.873,1.083,1.158,1.043,0.738,0.341,0.032,-0.057,-0.043,-0.040,-0.052,-0.062,-0.058,-0.046,-0.049,-0.067,-0.072,-0.063,-0.053,-0.041,-0.045,-0.061,-0.073,-0.072,-0.062,-0.058,-0.072,-0.088,-0.085,-0.082,-0.082,-0.086,-0.086,-0.087,-0.097,-0.100,-0.087,-0.080,-0.085,-0.085,-0.074,-0.059,-0.049,-0.064,-0.079,-0.070,-0.062,-0.063,-0.059,-0.045,-0.036,-0.046,-0.060,-0.054,-0.046,-0.044,-0.043,-0.036,-0.025,-0.021,-0.022,-0.014,0.005,0.018,0.015,0.014,0.011,0.001,0.002,0.003,-0.005,-0.019,-0.023,-0.017,-0.025,-0.037,-0.031,-0.023,-0.023,-0.025,-0.028,-0.031,-0.037,-0.046,-0.048,-0.041,-0.032,-0.036,-0.043,-0.041,-0.036,-0.030,-0.028,-0.030,-0.025,-0.018,-0.020,-0.017,-0.005,-0.000,-0.003,-0.001,0.003,0.001,-0.006,-0.009,-0.012,-0.017,-0.023,-0.032,-0.034,-0.027,-0.035,-0.054,-0.060,-0.056,-0.050,-0.045,-0.040,-0.032,-0.025,-0.021,-0.016,-0.014,-0.018,-0.016,-0.004,-0.000,-0.005,-0.005,-0.002,-0.004,-0.012,-0.016,-0.013,-0.018,-0.028,-0.031,-0.033,-0.032,-0.041,-0.053,-0.050,-0.045,-0.047,-0.040,-0.028,-0.025,-0.022,-0.016,-0.011,-0.009,-0.004,0.004,0.005,-0.001,-0.005,-0.004,-0.003,-0.006,-0.009,-0.017,-0.024,-0.030,-0.032,-0.028,-0.033,-0.035,-0.033,-0.035,-0.042,-0.040,-0.033,-0.028,-0.022,-0.014,-0.011,-0.007,-0.000,0.007,0.014,0.021,0.022,0.014,0.009,0.002,-0.026,-0.085,-0.125,-0.103,0.018,0.242,0.526,0.825,1.042,1.148,1.061,0.722,0.274,-0.021,-0.076,-0.043,-0.016,-0.015,-0.031,-0.041,-0.033,-0.030,-0.043,-0.048,-0.038,-0.030,-0.035,-0.042,-0.046,-0.050,-0.056,-0.063,-0.066,-0.069,-0.076,-0.084,-0.078,-0.071,-0.074,-0.079,-0.077,-0.069,-0.070,-0.079,-0.076,-0.070,-0.074,-0.079,-0.075,-0.073,-0.080,-0.081,-0.074,-0.071,-0.071,-0.068,-0.064,-0.070,-0.075,-0.071,-0.064,-0.059,-0.058,-0.052,-0.041,-0.031,-0.021,-0.009,0.001,0.009,0.018,0.029,0.038,0.038,0.035,0.033,0.026,0.017,0.007,0.001,-0.001,-0.009,-0.013,-0.014,-0.016,-0.021,-0.029,-0.035,-0.035,-0.035,-0.042,-0.047,-0.046,-0.042,-0.046,-0.048,-0.046,-0.043,-0.041,-0.038,-0.034,-0.030,-0.026,-0.021,-0.019,-0.020,-0.020,-0.024,-0.027,-0.027,-0.026,-0.032,-0.032,-0.029,-0.030,-0.030,-0.030,-0.032,-0.035,-0.035,-0.033,-0.031,-0.032,-0.037,-0.041,-0.040,-0.041,-0.045,-0.043,-0.036,-0.034,-0.028,-0.020,-0.019,-0.022,-0.027,-0.026,-0.033,-0.045,-0.044,-0.040,-0.036,-0.032,-0.029,-0.025,-0.023,-0.031,-0.042,-0.044,-0.042,-0.039,-0.040,-0.034,-0.030,-0.036,-0.042,-0.039,-0.034,-0.036,-0.031,-0.025,-0.025,-0.027,-0.029,-0.030,-0.033,-0.043,-0.056,-0.054,-0.048,-0.053,-0.049,-0.039,-0.037,-0.037,-0.028,-0.022,-0.020,-0.019,-0.014,-0.028,-0.076,-0.121,-0.118,-0.024,0.177,0.443,0.741,0.980,1.115,1.108,0.863,0.447,0.077,-0.064,-0.057,-0.037,-0.038,-0.044,-0.048,-0.051,-0.057,-0.063,-0.061,-0.054,-0.051,-0.051,-0.049,-0.041,-0.026,-0.016,-0.015,-0.014,-0.012,-0.011,-0.011,-0.007,-0.008,-0.015,-0.027,-0.030,-0.032,-0.042,-0.051,-0.052,-0.053,-0.063,-0.075,-0.081,-0.087,-0.094,-0.096,-0.092,-0.086,-0.082,-0.078,-0.070,-0.061,-0.053,-0.045,-0.038,-0.029,-0.020,-0.013,-0.004,0.002,0.006,0.014,0.022,0.031,0.039,0.042,0.043,0.045,0.038,0.030,0.023,0.013,0.003,-0.003,-0.008,-0.015,-0.020,-0.019,-0.019,-0.016,-0.012,-0.007,-0.007,-0.007,-0.005,-0.002,-0.001,-0.001,0.000,-0.002,-0.006,-0.008,-0.013,-0.016,-0.022,-0.028,-0.031,-0.031,-0.031,-0.031,-0.029,-0.027,-0.030,-0.025,-0.018,-0.018,-0.018,-0.014,-0.009,-0.011,-0.015,-0.018,-0.020,-0.020,-0.023,-0.029,-0.036,-0.042,-0.043,-0.042,-0.044,-0.047,-0.049,-0.051,-0.048,-0.046,-0.044,-0.047,-0.044,-0.040,-0.036,-0.030,-0.023,-0.020,-0.019,-0.018,-0.020,-0.022,-0.016,-0.006,-0.005,-0.002,-0.002,-0.007,-0.009,-0.012,-0.021,-0.030,-0.034,-0.033,-0.033,-0.036,-0.042,-0.041,-0.042,-0.043,-0.043,-0.041,-0.042,-0.041,-0.036,-0.031,-0.024,-0.019,-0.019,-0.018,-0.014,-0.011,-0.012,-0.015,-0.019,-0.023,-0.019,-0.016,-0.020,-0.021,-0.022,-0.021,-0.014,-0.012,-0.011,-0.013,-0.015,-0.013,-0.012,-0.020,-0.024,-0.022,-0.020,-0.018,-0.014,-0.010,-0.013,-0.016,-0.015,-0.016,-0.021,-0.026,-0.032,-0.035,-0.033,-0.031,-0.030,-0.021,-0.012,-0.012,-0.010,-0.002,0.003,0.004,0.005,0.005,-0.002,-0.039,-0.104,-0.138,-0.098,0.055,0.284,0.559,0.826,0.998,1.067,0.926,0.550,0.141,-0.068,-0.080,-0.045,-0.031,-0.038,-0.055,-0.063,-0.057,-0.052,-0.047,-0.043,-0.035,-0.027,-0.028,-0.030,-0.032,-0.031,-0.022,-0.018,-0.029,-0.042,-0.046,-0.044,-0.047,-0.063,-0.083,-0.084,-0.068,-0.070,-0.099,-0.115,-0.099,-0.077,-0.071,-0.079,-0.090,-0.086,-0.063,-0.046,-0.054,-0.072,-0.068,-0.042,-0.020,-0.019,-0.034,-0.037,-0.021,-0.007,-0.013,-0.025,-0.025,-0.009,0.007,0.003,-0.016,-0.025,-0.009,0.021,0.030,0.004,-0.016,-0.007,0.010,0.009,-0.017,-0.036,-0.029,-0.017,-0.017,-0.023,-0.020,-0.006,0.007,0.002,-0.017,-0.027,-0.016,0.007,0.007,-0.018,-0.036,-0.026,-0.009,-0.010,-0.036,-0.056,-0.056,-0.032,-0.013,-0.034,-0.071,-0.079,-0.059,-0.034,-0.038,-0.067,-0.075,-0.053,-0.036,-0.041,-0.048,-0.043,-0.015,0.005,-0.013,-0.041,-0.045,-0.031,-0.028,-0.041,-0.051,-0.055,-0.052,-0.036,-0.027,-0.044,-0.068,-0.077,-0.063,-0.029,-0.032,-0.073,-0.086,-0.068,-0.050,-0.048,-0.058,-0.065,-0.063,-0.049,-0.030,-0.027,-0.032,-0.031,-0.028,-0.021,-0.019,-0.026,-0.036,-0.037,-0.026,-0.022,-0.036,-0.058,-0.092,-0.140,-0.156,-0.099,0.073,0.325,0.619,0.906,1.096,1.158,0.991,0.580,0.141,-0.074,-0.083,-0.043,-0.024,-0.029,-0.032,-0.039,-0.051,-0.049,-0.041,-0.036,-0.029,-0.031,-0.041,-0.038,-0.024,-0.020,-0.037,-0.053,-0.051,-0.045,-0.044,-0.050,-0.060,-0.069,-0.065,-0.050,-0.046,-0.060,-0.079,-0.083,-0.061,-0.045,-0.049,-0.050,-0.051,-0.052,-0.050,-0.037,-0.025,-0.036,-0.049,-0.041,-0.034,-0.039,-0.039,-0.033,-0.020,-0.010,-0.009,-0.008,-0.004,0.000,0.001,0.013,0.039,0.047,0.044,0.052,0.057,0.052,0.047,0.045,0.026,0.003,-0.000,0.016,0.020,0.008,-0.017,-0.036,-0.028,-0.018,-0.020,-0.033,-0.040,-0.031,-0.020,-0.023,-0.023,-0.012,-0.010,-0.027,-0.040,-0.033,-0.016,-0.009,-0.011,-0.017,-0.019,-0.017,-0.021,-0.022,-0.014,-0.004,-0.004,-0.007,-0.014,-0.019,-0.023,-0.029,-0.026,-0.022,-0.022,-0.028,-0.029,-0.011,-0.002,-0.020,-0.016,-0.002,-0.011,-0.009,0.000,-0.002,-0.004,-0.008,-0.018,-0.026,-0.018,-0.011,-0.012,-0.017,-0.022,-0.027,-0.033,-0.024,-0.015,-0.025,-0.039,-0.041,-0.037,-0.026,-0.021,-0.029,-0.032,-0.030,-0.037,-0.032,-0.015,-0.013,-0.013,-0.007,0.000,-0.000,-0.006,-0.004,-0.001,-0.008,-0.017,-0.022,-0.023,-0.021,-0.022,-0.023,-0.020,-0.008,-0.000,-0.011,-0.019,-0.012,-0.009,-0.012,-0.016,-0.016,-0.014,-0.009,-0.003,-0.002,-0.002,-0.002,0.006,0.010,0.005,-0.001,0.001,0.002,-0.006,-0.016,-0.021,-0.017,-0.018,-0.025,-0.026,-0.023,-0.023,-0.026,-0.028,-0.025,-0.020,-0.020,-0.019,-0.010,-0.010,-0.017,-0.012,-0.001,0.004,0.003,0.001,0.004,0.008,0.007,0.003,0.001,0.003,-0.001,-0.006,-0.013,-0.024,-0.030,-0.037,-0.039,-0.043,-0.046,-0.043,-0.037,-0.035,-0.033,-0.024,-0.018,-0.021,-0.020,-0.014,-0.009,-0.012,-0.017,-0.015,-0.009,-0.004,-0.008,-0.016,-0.019,-0.018,-0.023,-0.028,-0.032,-0.032,-0.031,-0.031,-0.029,-0.025,-0.024,-0.022,-0.018,-0.018,-0.024,-0.028,-0.046,-0.097,-0.136,-0.117,0.002,0.224,0.510,0.812,1.021,1.125,1.054,0.731,0.295,-0.022,-0.106,-0.087,-0.064,-0.055,-0.062,-0.074,-0.079,-0.073,-0.071,-0.073,-0.072,-0.068,-0.071,-0.075,-0.073,-0.067,-0.074,-0.079,-0.066,-0.056,-0.062,-0.063,-0.053,-0.050,-0.057,-0.072,-0.078,-0.072,-0.077,-0.091,-0.092,-0.087,-0.091,-0.098,-0.099,-0.096,-0.100,-0.103,-0.099,-0.098,-0.100,-0.098,-0.092,-0.089,-0.089,-0.086,-0.073,-0.063,-0.055,-0.049,-0.040,-0.037,-0.041,-0.037,-0.025,-0.013,-0.011,-0.011,0.000,0.010,0.009,0.007,0.010,0.009,-0.001,-0.014,-0.022,-0.025,-0.028,-0.034,-0.034,-0.034,-0.039,-0.036,-0.030,-0.028,-0.033,-0.035,-0.030,-0.033,-0.035,-0.032,-0.031,-0.031,-0.032,-0.034,-0.035,-0.040,-0.046,-0.052,-0.050,-0.049,-0.050,-0.044,-0.039,-0.040,-0.041,-0.038,-0.037,-0.038,-0.038,-0.035,-0.032,-0.034,-0.036,-0.037,-0.041,-0.038,-0.035,-0.041,-0.066,-0.113,-0.143,-0.118,0.006,0.236,0.524,0.834,1.071,1.181,1.129,0.890,0.522,0.147,-0.026,-0.039,-0.035,-0.040,-0.044,-0.052,-0.065,-0.069,-0.065,-0.066,-0.073,-0.072,-0.067,-0.071,-0.074,-0.068,-0.068,-0.066,-0.062,-0.057,-0.054,-0.055,-0.055,-0.049,-0.046,-0.049,-0.054,-0.062,-0.072,-0.080,-0.086,-0.085,-0.082,-0.083,-0.081,-0.075,-0.068,-0.071,-0.074,-0.075,-0.074,-0.069,-0.061,-0.057,-0.056,-0.051,-0.042,-0.031,-0.025,-0.023,-0.010,0.004,0.010,0.014,0.024,0.030,0.027,0.027,0.032,0.026,0.016,0.005,-0.004,-0.007,-0.016,-0.028,-0.036,-0.038,-0.041,-0.044,-0.043,-0.040,-0.035,-0.030,-0.028,-0.028,-0.025,-0.022,-0.022,-0.021,-0.019,-0.023,-0.023,-0.023,-0.027,-0.032,-0.039,-0.044,-0.045,-0.045,-0.045,-0.043,-0.045,-0.046,-0.045,-0.045,-0.044,-0.046,-0.042,-0.034,-0.030,-0.030,-0.028,-0.024,-0.020,-0.018,-0.017,-0.014,-0.015,-0.019,-0.022,-0.020,-0.019,-0.022,-0.023,-0.027,-0.036,-0.043,-0.046,-0.047,-0.047,-0.041,-0.037,-0.034,-0.030,-0.027,-0.026,-0.026,-0.024,-0.023,-0.026,-0.028,-0.027,-0.028,-0.034,-0.037,-0.035,-0.032,-0.034,-0.030,-0.024,-0.025,-0.036,-0.047,-0.048,-0.048,-0.048,-0.046,-0.041,-0.034,-0.032,-0.033,-0.027,-0.021,-0.022,-0.022,-0.018,-0.014,-0.019,-0.025,-0.022,-0.021,-0.023,-0.026,-0.021,-0.017,-0.018,-0.020,-0.019,-0.017,-0.023,-0.032,-0.054,-0.106,-0.151,-0.140,-0.033,0.180,0.448,0.738,0.961,1.088,1.061,0.800,0.406,0.081,-0.025,-0.015,-0.004,-0.011,-0.024,-0.036,-0.051,-0.059,-0.060,-0.061,-0.069,-0.079,-0.077,-0.069,-0.075,-0.087,-0.089,-0.076,-0.063,-0.067,-0.081,-0.074,-0.044,-0.025,-0.037,-0.055,-0.053,-0.038,-0.033,-0.044,-0.059,-0.062,-0.050,-0.042,-0.055,-0.073,-0.079,-0.075,-0.078,-0.093,-0.111,-0.108,-0.090,-0.092,-0.115,-0.126,-0.106,-0.078,-0.073,-0.082,-0.077,-0.047,-0.006,0.006,-0.009,-0.013,0.009,0.043,0.061,0.041,0.016,0.008,0.020,0.035,0.021,-0.008,-0.022,-0.010,0.005,-0.013,-0.048,-0.055,-0.028,-0.009,-0.024,-0.048,-0.058,-0.039,0.002,0.018,-0.009,-0.037,-0.037,-0.014,0.016,0.007,-0.043,-0.065,-0.047,-0.022,-0.016,-0.040,-0.050,-0.030,-0.016,-0.026,-0.048,-0.059,-0.054,-0.044,-0.045,-0.061,-0.066,-0.044,-0.040,-0.048,-0.047,-0.031,-0.006,-0.013,-0.044,-0.051,-0.035,-0.019,-0.010,-0.025,-0.059,-0.075,-0.063,-0.034,-0.018,-0.038,-0.071,-0.094,-0.120,-0.129,-0.113,-0.027,0.186,0.477,0.783,1.031,1.156,1.104,0.828,0.397,0.032,-0.091,-0.070,-0.047,-0.050,-0.063,-0.050,-0.047,-0.065,-0.083,-0.086,-0.070,-0.056,-0.064,-0.082,-0.077,-0.066,-0.053,-0.030,-0.039,-0.070,-0.076,-0.058,-0.041,-0.045,-0.054,-0.069,-0.079,-0.078,-0.072,-0.071,-0.078,-0.081,-0.077,-0.082,-0.095,-0.100,-0.096,-0.075,-0.064,-0.079,-0.096,-0.090,-0.070,-0.060,-0.057,-0.046,-0.038,-0.051,-0.061,-0.047,-0.023,-0.025,-0.037,-0.021,-0.001,0.009,0.020,0.035,0.035,0.024,0.023,0.026,0.027,0.015,-0.009,-0.014,-0.011,-0.011,-0.012,-0.017,-0.013,-0.022,-0.046,-0.056,-0.048,-0.042,-0.048,-0.061,-0.062,-0.057,-0.054,-0.055,-0.052,-0.054,-0.062,-0.066,-0.057,-0.034,-0.030,-0.045,-0.045,-0.029,-0.027,-0.033,-0.020,-0.007,-0.014,-0.014,-0.015,-0.020,-0.020,-0.029,-0.039,-0.043,-0.045,-0.050,-0.052,-0.054,-0.060,-0.048,-0.038,-0.050,-0.058,-0.051,-0.037,-0.029,-0.034,-0.040,-0.038,-0.036,-0.032,-0.027,-0.023,-0.025,-0.031,-0.033,-0.033,-0.031,-0.031,-0.034,-0.038,-0.045,-0.046,-0.049,-0.053,-0.047,-0.042,-0.043,-0.044,-0.036,-0.030,-0.031,-0.033,-0.032,-0.030,-0.033,-0.076,-0.123,-0.113,-0.019,0.187,0.466,0.781,1.050,1.207,1.212,0.952,0.481,0.081,-0.057,-0.045,-0.016,-0.013,-0.028,-0.039,-0.042,-0.042,-0.048,-0.052,-0.053,-0.056,-0.060,-0.058,-0.055,-0.050,-0.048,-0.048,-0.050,-0.052,-0.059,-0.061,-0.051,-0.048,-0.057,-0.060,-0.051,-0.050,-0.061,-0.066,-0.063,-0.060,-0.062,-0.058,-0.054,-0.058,-0.062,-0.062,-0.057,-0.055,-0.058,-0.054,-0.046,-0.044,-0.047,-0.043,-0.040,-0.046,-0.046,-0.038,-0.027,-0.019,-0.017,-0.012,-0.001,0.016,0.028,0.036,0.043,0.042,0.036,0.040,0.043,0.037,0.030,0.026,0.022,0.018,0.012,0.011,0.011,0.006,-0.004,-0.008,-0.010,-0.015,-0.014,-0.016,-0.023,-0.029,-0.027,-0.025,-0.029,-0.031,-0.031,-0.033,-0.033,-0.032,-0.030,-0.023,-0.021,-0.019,-0.012,-0.008,-0.005,-0.002,-0.002,-0.002,0.000,0.007,0.002,-0.005,-0.008,-0.007,-0.009,-0.013,-0.018,-0.026,-0.026,-0.016,-0.011,-0.013,-0.011,-0.007,-0.006,-0.006,-0.003,-0.002,-0.004,-0.007,-0.009,-0.013,-0.019,-0.025,-0.028,-0.026,-0.025,-0.025,-0.030,-0.036,-0.040,-0.037,-0.034,-0.030,-0.029,-0.029,-0.028,-0.029,-0.030,-0.029,-0.030,-0.033,-0.030,-0.024,-0.023,-0.021,-0.015,-0.010,-0.007,-0.009,-0.012,-0.019,-0.027,-0.041,-0.047,-0.039,-0.036,-0.037,-0.035,-0.029,-0.031,-0.036,-0.035,-0.032,-0.036,-0.041,-0.038,-0.026,-0.018,-0.019,-0.013,-0.004,0.003,0.000,-0.001,0.000,-0.001,-0.011,-0.021,-0.022,-0.022,-0.025,-0.023,-0.019,-0.020,-0.020,-0.017,-0.015,-0.013,-0.012,-0.015,-0.020,-0.024,-0.023,-0.023,-0.024,-0.018,-0.013,-0.015,-0.016,-0.016,-0.016,-0.015,-0.012,-0.010,-0.009,-0.012,-0.016,-0.013,-0.013,-0.018,-0.016,-0.010,-0.010,-0.013,-0.007,0.001,0.001,0.000,0.001,0.001,-0.007,-0.011,-0.009,-0.012,-0.021,-0.027,-0.024,-0.024,-0.029,-0.035,-0.035,-0.035,-0.035,-0.036,-0.031,-0.024,-0.014,-0.011,-0.007,-0.002,0.004,0.005,-0.002,-0.036,-0.092,-0.118,-0.078,0.070,0.309,0.600,0.868,1.032,1.099,0.956,0.599,0.205,-0.014,-0.036,-0.013,-0.009,-0.023,-0.038,-0.048,-0.049,-0.050,-0.057,-0.057,-0.049,-0.042,-0.033,-0.028,-0.020,-0.021,-0.029,-0.032,-0.031,-0.038,-0.046,-0.048,-0.055,-0.066,-0.077,-0.080,-0.074,-0.078,-0.089,-0.091,-0.086,-0.087,-0.091,-0.088,-0.080,-0.076,-0.077,-0.076,-0.070,-0.066,-0.064,-0.066,-0.062,-0.056,-0.056,-0.050,-0.042,-0.040,-0.039,-0.038,-0.032,-0.024,-0.019,-0.012,-0.001,0.006,0.009,0.013,0.022,0.030,0.032,0.035,0.035,0.034,0.030,0.029,0.025,0.017,0.010,0.005,-0.000,-0.008,-0.014,-0.016,-0.014,-0.018,-0.023,-0.025,-0.026,-0.028,-0.029,-0.028,-0.026,-0.024,-0.023,-0.025,-0.027,-0.026,-0.023,-0.019,-0.016,-0.011,-0.006,-0.009,-0.010,-0.005,-0.002,-0.004,-0.010,-0.015,-0.017,-0.018,-0.022,-0.027,-0.032,-0.035,-0.041,-0.043,-0.040,-0.041,-0.041,-0.038,-0.035,-0.034,-0.034,-0.030,-0.022,-0.013,-0.011,-0.009,-0.001,-0.003,-0.009,-0.007,-0.008,-0.016,-0.022,-0.025,-0.024,-0.027,-0.033,-0.039,-0.040,-0.041,-0.047,-0.053,-0.054,-0.053,-0.052,-0.054,-0.054,-0.054,-0.057,-0.055,-0.044,-0.038,-0.040,-0.035,-0.029,-0.025,-0.022,-0.015,-0.010,-0.011,-0.015,-0.019,-0.016,-0.013,-0.014,-0.014,-0.013,-0.011,-0.014,-0.020,-0.024,-0.033,-0.044,-0.046,-0.045,-0.048,-0.055,-0.057,-0.055,-0.050,-0.043,-0.040,-0.044,-0.037,-0.021,-0.010,-0.002,0.005,0.009,-0.002,-0.035,-0.085,-0.113,-0.086,0.053,0.298,0.584,0.855,1.031,1.115,0.997,0.631,0.207,-0.031,-0.048,-0.020,-0.030,-0.057,-0.064,-0.050,-0.036,-0.052,-0.074,-0.065,-0.032,-0.023,-0.047,-0.069,-0.060,-0.034,-0.017,-0.036,-0.059,-0.065,-0.049,-0.028,-0.034,-0.063,-0.081,-0.067,-0.037,-0.045,-0.085,-0.093,-0.065,-0.034,-0.035,-0.065,-0.079,-0.066,-0.045,-0.036,-0.055,-0.069,-0.056,-0.037,-0.027,-0.028,-0.031,-0.039,-0.046,-0.039,-0.014,-0.008,-0.032,-0.043,-0.023,0.015,0.031,0.011,-0.003,0.021,0.057,0.063,0.034,0.013,0.026,0.058,0.051,0.009,-0.017,-0.018,-0.012,-0.007,-0.016,-0.027,-0.018,-0.007,-0.011,-0.015,-0.016,-0.023,-0.031,-0.039,-0.033,-0.011,-0.016,-0.043,-0.052,-0.033,-0.017,-0.031,-0.054,-0.046,-0.034,-0.038,-0.039,-0.039,-0.053,-0.059,-0.049,-0.031,-0.023,-0.032,-0.041,-0.041,-0.036,-0.028,-0.028,-0.036,-0.041,-0.043,-0.044,-0.033,-0.028,-0.043,-0.051,-0.043,-0.030,-0.027,-0.034,-0.042,-0.044,-0.042,-0.033,-0.033,-0.044,-0.048,-0.045,-0.031,-0.028,-0.042,-0.048,-0.044,-0.034,-0.031,-0.046,-0.061,-0.060,-0.044,-0.027,-0.024,-0.036,-0.043,-0.036,-0.020,-0.015,-0.023,-0.024,-0.027,-0.030,-0.022,-0.019,-0.013,-0.006,-0.006,-0.009,-0.013,-0.016,-0.022,-0.029,-0.028,-0.031,-0.041,-0.043,-0.034,-0.037,-0.053,-0.054,-0.041,-0.038,-0.037,-0.023,-0.031,-0.047,-0.034,-0.015,-0.020,-0.027,-0.021,-0.020,-0.048,-0.097,-0.126,-0.098,0.047,0.296,0.604,0.901,1.099,1.185,1.035,0.604,0.138,-0.071,-0.068,-0.036,-0.028,-0.046,-0.047,-0.036,-0.037,-0.047,-0.059,-0.060,-0.046,-0.038,-0.035,-0.036,-0.035,-0.030,-0.031,-0.030,-0.031,-0.035,-0.047,-0.070,-0.073,-0.065,-0.068,-0.080,-0.084,-0.075,-0.075,-0.082,-0.085,-0.078,-0.062,-0.054,-0.062,-0.066,-0.070,-0.072,-0.066,-0.066,-0.068,-0.059,-0.043,-0.042,-0.045,-0.036,-0.025,-0.031,-0.037,-0.026,-0.020,-0.021,-0.012,0.003,0.011,0.018,0.027,0.032,0.032,0.036,0.049,0.052,0.036,0.016,0.009,0.010,0.006,-0.007,-0.018,-0.023,-0.025,-0.026,-0.029,-0.026,-0.020,-0.020,-0.030,-0.034,-0.021,-0.018,-0.032,-0.045,-0.042,-0.044,-0.050,-0.047,-0.049,-0.053,-0.054,-0.052,-0.045,-0.043,-0.046,-0.050,-0.051,-0.052,-0.047,-0.039,-0.034,-0.035,-0.036,-0.030,-0.023,-0.014,-0.012,-0.015,-0.009,-0.006,-0.016,-0.029,-0.035,-0.039,-0.044,-0.047,-0.049,-0.052,-0.055,-0.062,-0.064,-0.064,-0.064,-0.063,-0.062,-0.058,-0.054,-0.055,-0.056,-0.051,-0.045,-0.037,-0.032,-0.029,-0.028,-0.031,-0.037,-0.057,-0.108,-0.147,-0.131,-0.030,0.182,0.463,0.769,1.018,1.152,1.113,0.846,0.425,0.058,-0.084,-0.078,-0.048,-0.039,-0.052,-0.064,-0.060,-0.055,-0.058,-0.062,-0.058,-0.052,-0.055,-0.060,-0.062,-0.061,-0.060,-0.061,-0.062,-0.065,-0.069,-0.070,-0.067,-0.069,-0.073,-0.070,-0.066,-0.066,-0.067,-0.066,-0.069,-0.067,-0.057,-0.052,-0.054,-0.059,-0.070,-0.073,-0.073,-0.073,-0.072,-0.075,-0.072,-0.066,-0.067,-0.069,-0.064,-0.054,-0.047,-0.044,-0.034,-0.017,-0.010,-0.004,0.005,0.018,0.026,0.027,0.032,0.037,0.039,0.035,0.026,0.016,0.007,-0.004,-0.011,-0.017,-0.020,-0.029,-0.035,-0.033,-0.035,-0.041,-0.042,-0.040,-0.040,-0.044,-0.049,-0.046,-0.042,-0.045,-0.046,-0.039,-0.037,-0.042,-0.040,-0.035,-0.033,-0.033,-0.035,-0.036,-0.042,-0.049,-0.049,-0.044,-0.039,-0.039,-0.043,-0.043,-0.041,-0.040,-0.036,-0.032,-0.033,-0.034,-0.031,-0.028,-0.029,-0.034,-0.038,-0.038,-0.038,-0.039,-0.039,-0.037,-0.040,-0.046,-0.050,-0.045,-0.041,-0.048,-0.053,-0.052,-0.055,-0.061,-0.063,-0.062,-0.065,-0.061,-0.053,-0.048,-0.045,-0.040,-0.035,-0.031,-0.030,-0.034,-0.043,-0.073,-0.128,-0.157,-0.121,0.022,0.259,0.546,0.836,1.026,1.105,1.006,0.710,0.319,0.023,-0.055,-0.041,-0.029,-0.030,-0.038,-0.042,-0.042,-0.043,-0.045,-0.050,-0.052,-0.053,-0.062,-0.061,-0.061,-0.067,-0.072,-0.078,-0.077,-0.079,-0.085,-0.084,-0.079,-0.081,-0.081,-0.077,-0.071,-0.068,-0.073,-0.075,-0.072,-0.070,-0.068,-0.059,-0.050,-0.047,-0.051,-0.048,-0.043,-0.040,-0.047,-0.058,-0.056,-0.052,-0.054,-0.054,-0.050,-0.049,-0.048,-0.043,-0.043,-0.047,-0.044,-0.035,-0.024,-0.009,-0.000,0.000,0.004,0.001,0.001,0.005,0.007,0.004,-0.005,-0.003,0.002,-0.000,-0.001,-0.004,-0.009,-0.011,-0.014,-0.012,-0.009,-0.010,-0.012,-0.015,-0.012,-0.022,-0.037,-0.040,-0.038,-0.041,-0.044,-0.047,-0.044,-0.043,-0.043,-0.040,-0.035,-0.032,-0.033,-0.035,-0.034,-0.036,-0.036,-0.028,-0.019,-0.013,-0.010,-0.012,-0.014,-0.014,-0.018,-0.018,-0.025,-0.031,-0.028,-0.030,-0.032,-0.034,-0.038,-0.046,-0.050,-0.050,-0.050,-0.049,-0.053,-0.060,-0.052,-0.041,-0.041,-0.039,-0.037,-0.041,-0.043,-0.036,-0.032,-0.036,-0.028,-0.013,-0.008,-0.015,-0.014,-0.007,-0.008,-0.026,-0.080,-0.136,-0.144,-0.090,0.072,0.314,0.599,0.872,1.044,1.114,0.985,0.646,0.254,0.018,-0.025,-0.010,-0.005,-0.011,-0.026,-0.043,-0.044,-0.050,-0.054,-0.058,-0.063,-0.059,-0.059,-0.060,-0.043,-0.041,-0.049,-0.048,-0.044,-0.040,-0.044,-0.043,-0.028,-0.028,-0.049,-0.047,-0.039,-0.047,-0.043,-0.042,-0.047,-0.045,-0.050,-0.054,-0.053,-0.058,-0.061,-0.062,-0.061,-0.064,-0.077,-0.080,-0.061,-0.045,-0.043,-0.043,-0.042,-0.037,-0.029,-0.033,-0.033,-0.020,-0.009,0.003,0.018,0.024,0.037,0.047,0.059,0.055,0.038,0.034,0.041,0.046,0.022,0.005,0.004,-0.009,-0.015,-0.008,-0.002,-0.007,-0.015,-0.021,-0.025,-0.023,-0.024,-0.022,-0.015,-0.016,-0.027,-0.020,-0.009,-0.012,-0.020,-0.018,-0.022,-0.030,-0.023,-0.025,-0.034,-0.037,-0.037,-0.026,-0.014,-0.027,-0.052,-0.041,-0.020,-0.018,-0.032,-0.056,-0.028,-0.005,-0.027,-0.032,-0.046,-0.027,-0.001,-0.003,-0.036,-0.070,-0.054,-0.022,-0.015,-0.036,-0.044,-0.015,-0.006,-0.023,-0.042,-0.046,-0.017,-0.014,-0.039,-0.054,-0.044,-0.017,-0.013,-0.031,-0.058,-0.055,-0.023,0.003,-0.021,-0.052,-0.041,-0.016,0.001,-0.013,-0.033,-0.036,-0.031,-0.026,-0.013,-0.017,-0.027,-0.018,-0.013,-0.019,-0.018,-0.016,-0.008,-0.009,-0.016,-0.011,-0.026,-0.042,-0.034,-0.013,-0.018,-0.041,-0.033,-0.017,-0.002,-0.001,-0.013,-0.010,0.031,0.050,0.005,-0.023,-0.010,0.007,0.012,0.007,-0.003,-0.016,-0.011,0.001,-0.003,-0.009,-0.011,-0.012,-0.009,-0.002,-0.004,-0.015,-0.024,-0.013,-0.006,0.001,0.006,-0.011,-0.007,0.010,0.018,0.013,0.006,0.004,0.003,0.018,0.024,0.017,0.011,0.008,0.024,0.016,-0.012,-0.010,0.006,0.024,0.027,0.002,-0.023,-0.019,0.010,0.026,0.008,-0.015,-0.025,-0.016,0.006,0.018,-0.008,-0.036,-0.018,0.016,0.020,-0.007,-0.033,-0.033,-0.017,-0.001,0.006,-0.002,-0.008,-0.016,-0.039,-0.083,-0.124,-0.121,-0.009,0.210,0.497,0.815,1.043,1.147,1.088,0.770,0.323,0.012,-0.067,-0.054,-0.039,-0.039,-0.039,-0.043,-0.054,-0.067,-0.084,-0.082,-0.079,-0.071,-0.053,-0.051,-0.064,-0.091,-0.098,-0.087,-0.074,-0.075,-0.097,-0.103,-0.084,-0.081,-0.098,-0.104,-0.104,-0.119,-0.127,-0.119,-0.090,-0.086,-0.108,-0.116,-0.113,-0.101,-0.091,-0.080,-0.080,-0.080,-0.082,-0.085,-0.091,-0.085,-0.069,-0.070,-0.077,-0.084,-0.084,-0.069,-0.064,-0.070,-0.071,-0.056,-0.035,-0.033,-0.032,-0.024,-0.027,-0.025,-0.026,-0.022,0.003,0.007,-0.017,-0.023,-0.012,-0.008,-0.023,-0.034,-0.023,-0.020,-0.036,-0.050,-0.037,-0.012,-0.022,-0.045,-0.033,-0.029,-0.040,-0.045,-0.043,-0.040,-0.047,-0.059,-0.065,-0.057,-0.053,-0.056,-0.053,-0.046,-0.050,-0.062,-0.060,-0.052,-0.050,-0.052,-0.054,-0.054,-0.048,-0.041,-0.035,-0.023,-0.021,-0.022,-0.023,-0.022,-0.020,-0.029,-0.029,-0.026,-0.038,-0.050,-0.052,-0.052,-0.053,-0.044,-0.041,-0.042,-0.034,-0.045,-0.057,-0.091,-0.150,-0.156,-0.092,0.090,0.356,0.662,0.960,1.153,1.186,1.001,0.600,0.169,-0.055,-0.081,-0.052,-0.039,-0.052,-0.068,-0.071,-0.076,-0.081,-0.082,-0.082,-0.079,-0.077,-0.075,-0.066,-0.061,-0.061,-0.062,-0.068,-0.073,-0.081,-0.081,-0.078,-0.083,-0.094,-0.094,-0.088,-0.081,-0.079,-0.085,-0.092,-0.092,-0.094,-0.094,-0.087,-0.077,-0.073,-0.072,-0.069,-0.060,-0.057,-0.063,-0.062,-0.057,-0.056,-0.059,-0.054,-0.045,-0.036,-0.021,-0.016,-0.018,-0.014,-0.013,-0.005,0.004,0.006,0.005,0.010,0.014,0.011,0.012,0.007,-0.008,-0.016,-0.014,-0.014,-0.018,-0.018,-0.020,-0.023,-0.032,-0.043,-0.053,-0.059,-0.059,-0.053,-0.053,-0.064,-0.065,-0.063,-0.068,-0.072,-0.070,-0.063,-0.055,-0.058,-0.058,-0.052,-0.062,-0.106,-0.157,-0.150,-0.044,0.167,0.456,0.786,1.045,1.178,1.169,1.005,0.727,0.321,0.034,-0.035,-0.052,-0.059,-0.062,-0.073,-0.089,-0.091,-0.085,-0.091,-0.098,-0.093,-0.087,-0.085,-0.087,-0.090,-0.082,-0.075,-0.082,-0.078,-0.068,-0.067,-0.070,-0.073,-0.078,-0.092,-0.100,-0.092,-0.090,-0.102,-0.114,-0.111,-0.105,-0.113,-0.113,-0.102,-0.101,-0.106,-0.106,-0.102,-0.098,-0.095,-0.099,-0.095,-0.091,-0.098,-0.100,-0.096,-0.089,-0.081,-0.080,-0.074,-0.064,-0.063,-0.057,-0.042,-0.027,-0.025,-0.029,-0.030,-0.028,-0.021,-0.027,-0.028,-0.017,-0.015,-0.023,-0.024,-0.017,-0.015,-0.017,-0.012,-0.007,-0.003,0.000,-0.001,0.001,0.007,0.009,0.010,0.007,0.008,-0.001,-0.007,-0.004,-0.001,-0.012,-0.021,-0.021,-0.029,-0.040,-0.046,-0.044,-0.039,-0.042,-0.042,-0.034,-0.029,-0.028,-0.021,-0.025,-0.026,-0.014,-0.010,-0.009,-0.014,-0.014,-0.007,-0.002,-0.002,-0.001,-0.003,-0.007,-0.012,-0.014,-0.015,-0.020,-0.028,-0.033,-0.034,-0.044,-0.056,-0.053,-0.046,-0.038,-0.038,-0.039,-0.033,-0.032,-0.041,-0.043,-0.029,-0.019,-0.019,-0.020,-0.015,-0.016,-0.016,-0.018,-0.015,-0.019,-0.025,-0.020,-0.022,-0.029,-0.031,-0.025,-0.028,-0.036,-0.039,-0.040,-0.040,-0.052,-0.096,-0.149,-0.149,-0.081,0.096,0.356,0.655,0.909,1.059,1.094,0.907,0.536,0.159,-0.031,-0.047,-0.021,-0.008,-0.023,-0.034,-0.048,-0.055,-0.053,-0.064,-0.071,-0.067,-0.064,-0.068,-0.068,-0.066,-0.076,-0.085,-0.082,-0.075,-0.074,-0.084,-0.087,-0.086,-0.090,-0.092,-0.094,-0.096,-0.105,-0.108,-0.107,-0.101,-0.103,-0.110,-0.104,-0.094,-0.094,-0.088,-0.077,-0.081,-0.092,-0.094,-0.089,-0.081,-0.080,-0.083,-0.085,-0.084,-0.076,-0.073,-0.070,-0.056,-0.051,-0.054,-0.044,-0.023,-0.009,-0.008,-0.002,0.006,0.004,-0.001,-0.008,-0.012,-0.022,-0.036,-0.034,-0.029,-0.037,-0.039,-0.031,-0.020,-0.016,-0.008,-0.001,-0.004,-0.008,-0.010,-0.011,-0.007,-0.009,-0.016,-0.019,-0.010,-0.014,-0.034,-0.040,-0.037,-0.036,-0.046,-0.058,-0.054,-0.053,-0.056,-0.056,-0.053,-0.056,-0.055,-0.041,-0.032,-0.034,-0.032,-0.028,-0.016,-0.005,-0.006,-0.037,-0.093,-0.102,-0.046,0.101,0.339,0.624,0.907,1.102,1.176,1.060,0.761,0.356,0.032,-0.056,-0.045,-0.040,-0.043,-0.056,-0.060,-0.057,-0.052,-0.047,-0.049,-0.048,-0.043,-0.052,-0.058,-0.045,-0.034,-0.038,-0.046,-0.039,-0.031,-0.040,-0.045,-0.042,-0.041,-0.049,-0.055,-0.049,-0.047,-0.057,-0.065,-0.059,-0.053,-0.050,-0.050,-0.043,-0.048,-0.064,-0.058,-0.042,-0.043,-0.056,-0.068,-0.063,-0.053,-0.048,-0.036,-0.029,-0.025,-0.016,-0.011,-0.016,-0.017,-0.007,0.010,0.019,0.018,0.023,0.035,0.041,0.030,0.021,0.027,0.031,0.015,-0.006,-0.006,0.005,0.001,-0.020,-0.033,-0.021,-0.010,-0.022,-0.038,-0.032,-0.021,-0.020,-0.022,-0.025,-0.020,-0.016,-0.029,-0.038,-0.033,-0.018,-0.008,-0.009,-0.014,-0.010,-0.003,-0.011,-0.023,-0.027,-0.014,-0.003,-0.015,-0.033,-0.035,-0.014,0.002,-0.012,-0.036,-0.043,-0.023,0.005,0.006,-0.026,-0.045,-0.040,-0.022,-0.006,-0.023,-0.051,-0.061,-0.030,0.001,-0.019,-0.060,-0.076,-0.050,-0.009,-0.002,-0.031,-0.049,-0.038,-0.006,0.020,-0.005,-0.041,-0.038,-0.013,0.004,-0.004,-0.033,-0.041,-0.022,-0.012,-0.021,-0.038,-0.052,-0.034,-0.019,-0.036,-0.057,-0.045,-0.019,-0.020,-0.046,-0.070,-0.068,-0.046,-0.030,-0.038,-0.050,-0.041,-0.024,-0.020,-0.034,-0.037,-0.027,-0.020,-0.027,-0.028,-0.015,-0.008,-0.014,-0.012,-0.001,-0.004,-0.012,-0.011,-0.002,-0.002,-0.018,-0.035,-0.033,-0.031,-0.032,-0.032,-0.037,-0.039,-0.037,-0.033,-0.027,-0.029,-0.038,-0.053,-0.052,-0.033,-0.037,-0.055,-0.058,-0.039,-0.033,-0.054,-0.099,-0.151,-0.156,-0.078,0.118,0.379,0.659,0.925,1.113,1.160,0.924,0.457,0.052,-0.083,-0.070,-0.052,-0.043,-0.051,-0.066,-0.073,-0.069,-0.083,-0.095,-0.095,-0.090,-0.094,-0.098,-0.089,-0.084,-0.088,-0.099,-0.111,-0.113,-0.097,-0.083,-0.104,-0.113,-0.108,-0.105,-0.102,-0.112,-0.123,-0.121,-0.112,-0.104,-0.129,-0.155,-0.145,-0.130,-0.139,-0.138,-0.129,-0.140,-0.145,-0.145,-0.135,-0.130,-0.130,-0.111,-0.101,-0.112,-0.111,-0.094,-0.079,-0.073,-0.089,-0.076,-0.044,-0.034,-0.040,-0.030,-0.008,-0.010,-0.020,-0.002,0.017,0.008,-0.008,-0.014,-0.015,-0.029,-0.047,-0.044,-0.032,-0.035,-0.048,-0.046,-0.035,-0.037,-0.045,-0.050,-0.046,-0.043,-0.049,-0.051,-0.045,-0.050,-0.052,-0.037,-0.036,-0.047,-0.047,-0.045,-0.042,-0.042,-0.038,-0.026,-0.028,-0.034,-0.024,-0.019,-0.020,-0.009,-0.002,-0.037,-0.102,-0.105,0.001,0.215,0.514,0.860,1.143,1.297,1.287,1.043,0.617,0.200,0.011,-0.011,-0.006,-0.005,-0.010,-0.023,-0.030,-0.027,-0.030,-0.034,-0.038,-0.029,-0.027,-0.031,-0.030,-0.032,-0.037,-0.047,-0.048,-0.042,-0.049,-0.055,-0.051,-0.064,-0.081,-0.079,-0.069,-0.063,-0.074,-0.080,-0.075,-0.070,-0.071,-0.074,-0.073,-0.067,-0.068,-0.070,-0.066,-0.060,-0.058,-0.056,-0.043,-0.039,-0.047,-0.052,-0.047,-0.040,-0.044,-0.050,-0.056,-0.059,-0.052,-0.044,-0.042,-0.031,-0.020,-0.017,-0.013,-0.009,-0.008,-0.005,-0.006,-0.011,-0.012,-0.020,-0.028,-0.032,-0.029,-0.023,-0.023,-0.026,-0.024,-0.024,-0.031,-0.042,-0.048,-0.057,-0.062,-0.061,-0.063,-0.068,-0.063,-0.060,-0.062,-0.061,-0.063,-0.067,-0.067,-0.068,-0.068,-0.060,-0.053,-0.045,-0.039,-0.037,-0.032,-0.030,-0.031,-0.028,-0.021,-0.020,-0.037,-0.083,-0.132,-0.143,-0.080,0.100,0.371,0.676,0.948,1.116,1.153,0.995,0.695,0.321,0.014,-0.085,-0.085,-0.081,-0.087,-0.095,-0.098,-0.101,-0.104,-0.101,-0.099,-0.094,-0.081,-0.087,-0.091,-0.085,-0.083,-0.084,-0.088,-0.090,-0.094,-0.091,-0.089,-0.091,-0.096,-0.104,-0.105,-0.109,-0.110,-0.111,-0.110,-0.101,-0.100,-0.105,-0.101,-0.098,-0.099,-0.098,-0.093,-0.085,-0.094,-0.113,-0.111,-0.108,-0.111,-0.111,-0.106,-0.102,-0.104,-0.108,-0.102,-0.085,-0.076,-0.074,-0.074,-0.063,-0.052,-0.046,-0.035,-0.025,-0.016,-0.022,-0.025,-0.022,-0.026,-0.029,-0.028,-0.029,-0.031,-0.033,-0.030,-0.024,-0.030,-0.038,-0.038,-0.029,-0.028,-0.037,-0.041,-0.040,-0.043,-0.044,-0.040,-0.043,-0.064,-0.075,-0.070,-0.065,-0.065,-0.066,-0.058,-0.050,-0.050,-0.057,-0.053,-0.045,-0.033,-0.027,-0.023,-0.017,-0.011,-0.005,-0.004,-0.008,-0.007,-0.011,-0.035,-0.080,-0.117,-0.114,-0.019,0.193,0.466,0.760,0.988,1.099,1.058,0.834,0.507,0.156,-0.044,-0.075,-0.066,-0.062,-0.064,-0.074,-0.078,-0.070,-0.068,-0.071,-0.074,-0.064,-0.056,-0.056,-0.056,-0.054,-0.042,-0.039,-0.049,-0.049,-0.046,-0.053,-0.061,-0.073,-0.084,-0.089,-0.094,-0.099,-0.098,-0.100,-0.103,-0.104,-0.103,-0.098,-0.090,-0.089,-0.090,-0.088,-0.091,-0.089,-0.081,-0.077,-0.074,-0.071,-0.068,-0.065,-0.066,-0.066,-0.063,-0.066,-0.074,-0.072,-0.066,-0.060,-0.053,-0.047,-0.042,-0.034,-0.030,-0.024,-0.016,-0.013,-0.015,-0.017,-0.019,-0.016,-0.011,-0.008,0.000,0.007,0.002,0.001,0.004,-0.000,-0.009,-0.021,-0.023,-0.027,-0.034,-0.037,-0.040,-0.043,-0.047,-0.052,-0.052,-0.053,-0.048,-0.043,-0.046,-0.044,-0.037,-0.034,-0.040,-0.045,-0.049,-0.048,-0.041,-0.032,-0.028,-0.022,-0.020,-0.025,-0.033,-0.036,-0.038,-0.038,-0.041,-0.042,-0.034,-0.034,-0.046,-0.081,-0.130,-0.141,-0.088,0.079,0.335,0.626,0.897,1.066,1.118,0.979,0.678,0.317,0.047,-0.031,-0.019,-0.015,-0.024,-0.041,-0.047,-0.041,-0.045,-0.053,-0.052,-0.049,-0.051,-0.055,-0.063,-0.062,-0.058,-0.060,-0.055,-0.048,-0.053,-0.056,-0.048,-0.043,-0.040,-0.041,-0.040,-0.040,-0.046,-0.049,-0.054,-0.062,-0.067,-0.071,-0.069,-0.074,-0.078,-0.082,-0.086,-0.079,-0.079,-0.087,-0.087,-0.084,-0.083,-0.079,-0.074,-0.064,-0.061,-0.064,-0.054,-0.036,-0.021,-0.013,0.000,0.018,0.028,0.036,0.041,0.044,0.042,0.033,0.031,0.024,0.007,-0.004,-0.010,-0.009,-0.011,-0.021,-0.027,-0.023,-0.020,-0.025,-0.029,-0.030,-0.022,-0.016,-0.008,-0.004,-0.003,0.001,0.000,0.000,0.005,0.006,0.000,-0.004,0.002,0.002,-0.004,-0.011,-0.018,-0.018,-0.022,-0.021,-0.024,-0.036,-0.040,-0.037,-0.034,-0.033,-0.035,-0.039,-0.040,-0.037,-0.044,-0.047,-0.036,-0.022,-0.021,-0.024,-0.016,-0.015,-0.021,-0.016,-0.013,-0.015,-0.018,-0.018,-0.022,-0.032,-0.033,-0.029,-0.029,-0.030,-0.037,-0.041,-0.039,-0.039,-0.039,-0.041,-0.036,-0.036,-0.034,-0.035,-0.037,-0.035,-0.028,-0.020,-0.021,-0.017,-0.023,-0.032,-0.026,-0.024,-0.021,-0.020,-0.021,-0.016,-0.013,-0.015,-0.013,-0.010,-0.015,-0.017,-0.016,-0.009,-0.010,-0.016,-0.010,-0.006,-0.017,-0.026,-0.021,-0.018,-0.023,-0.027,-0.029,-0.034,-0.038,-0.038,-0.031,-0.014,-0.007,-0.019,-0.029,-0.023,-0.014,-0.011,-0.013,-0.011,-0.006,-0.003,-0.027,-0.084,-0.120,-0.107,-0.017,0.178,0.450,0.752,0.961,1.059,1.017,0.742,0.345,0.038,-0.063,-0.050,-0.027,-0.014,-0.017,-0.034,-0.046,-0.052,-0.049,-0.034,-0.028,-0.046,-0.065,-0.055,-0.030,-0.023,-0.037,-0.047,-0.040,-0.030,-0.018,-0.018,-0.042,-0.066,-0.068,-0.051,-0.037,-0.050,-0.075,-0.072,-0.050,-0.056,-0.079,-0.084,-0.065,-0.054,-0.080,-0.101,-0.081,-0.057,-0.057,-0.071,-0.079,-0.069,-0.049,-0.036,-0.041,-0.058,-0.063,-0.049,-0.021,0.001,-0.010,-0.028,-0.008,0.028,0.050,0.042,0.030,0.043,0.070,0.084,0.065,0.039,0.037,0.045,0.039,0.031,0.020,0.002,-0.003,0.013,0.026,0.026,0.012,-0.006,-0.011,-0.004,0.008,0.007,0.000,-0.008,-0.019,-0.017,-0.009,-0.005,-0.009,-0.017,-0.025,-0.028,-0.022,-0.014,-0.018,-0.035,-0.042,-0.035,-0.025,-0.015,-0.014,-0.023,-0.031,-0.023,-0.014,-0.013,-0.025,-0.028,-0.012,-0.003,-0.006,-0.010,-0.003,-0.006,-0.026,-0.038,-0.033,-0.018,-0.012,-0.029,-0.046,-0.045,-0.031,-0.016,-0.025,-0.038,-0.040,-0.036,-0.037,-0.033,-0.031,-0.035,-0.031,-0.021,-0.030,-0.047,-0.047,-0.025,-0.007,-0.010,-0.024,-0.030,-0.026,-0.012,0.001,0.000,-0.012,-0.015,-0.014,-0.019,-0.008,0.000,-0.016,-0.035,-0.039,-0.037,-0.033,-0.030,-0.035,-0.049,-0.049,-0.043,-0.039,-0.036,-0.031,-0.022,-0.031,-0.045,-0.033,-0.020,-0.020,-0.019,-0.026,-0.023,-0.014,-0.022,-0.026,-0.023,-0.015,-0.008,0.001,-0.004,-0.011,-0.006,0.001,0.004,-0.002,-0.024,-0.032,-0.022,-0.026,-0.034,-0.036,-0.028,-0.011,0.001,-0.003,-0.012,-0.003,0.004,-0.012,-0.026,-0.024,-0.024,-0.029,-0.020,-0.004,-0.017,-0.040,-0.042,-0.026,-0.016,-0.023,-0.019,-0.010,-0.016,-0.028,-0.027,-0.024,-0.030,-0.036,-0.048,-0.080,-0.125,-0.141,-0.093,0.054,0.295,0.598,0.898,1.096,1.188,1.048,0.613,0.153,-0.050,-0.050,-0.028,-0.012,-0.018,-0.027,-0.024,-0.028,-0.044,-0.051,-0.055,-0.056,-0.056,-0.061,-0.065,-0.075,-0.081,-0.077,-0.081,-0.087,-0.088,-0.088,-0.089,-0.085,-0.085,-0.082,-0.069,-0.050,-0.041,-0.047,-0.050,-0.050,-0.051,-0.059,-0.063,-0.060,-0.056,-0.063,-0.073,-0.069,-0.070,-0.078,-0.089,-0.095,-0.092,-0.084,-0.071,-0.057,-0.049,-0.053,-0.054,-0.041,-0.034,-0.030,-0.019,-0.006,0.007,0.020,0.040,0.058,0.060,0.054,0.052,0.051,0.042,0.022,0.001,-0.005,-0.006,-0.016,-0.029,-0.028,-0.025,-0.031,-0.028,-0.020,-0.022,-0.026,-0.029,-0.027,-0.029,-0.036,-0.041,-0.037,-0.034,-0.032,-0.030,-0.036,-0.045,-0.051,-0.047,-0.042,-0.048,-0.050,-0.044,-0.037,-0.038,-0.044,-0.035,-0.032,-0.045,-0.050,-0.047,-0.041,-0.036,-0.035,-0.029,-0.016,-0.013,-0.022,-0.019,-0.016,-0.025,-0.032,-0.026,-0.022,-0.029,-0.035,-0.025,-0.019,-0.028,-0.033,-0.035,-0.048,-0.062,-0.063,-0.059,-0.051,-0.051,-0.055,-0.053,-0.050,-0.049,-0.055,-0.049,-0.041,-0.037,-0.031,-0.021,-0.019,-0.024,-0.028,-0.039,-0.087,-0.141,-0.142,-0.063,0.136,0.407,0.715,0.975,1.121,1.125,0.902,0.497,0.105,-0.069,-0.075,-0.049,-0.033,-0.038,-0.050,-0.050,-0.047,-0.056,-0.062,-0.054,-0.050,-0.051,-0.051,-0.046,-0.046,-0.050,-0.052,-0.052,-0.051,-0.056,-0.057,-0.052,-0.053,-0.055,-0.052,-0.057,-0.071,-0.077,-0.074,-0.071,-0.072,-0.075,-0.071,-0.065,-0.058,-0.052,-0.051,-0.046,-0.041,-0.038,-0.030,-0.023,-0.025,-0.030,-0.024,-0.016,-0.014,-0.023,-0.020,-0.008,0.002,0.004,0.005,0.014,0.024,0.027,0.033,0.039,0.036,0.024,0.019,0.013,0.006,0.003,-0.002,-0.001,-0.003,-0.005,-0.002,-0.006,-0.012,-0.016,-0.027,-0.038,-0.041,-0.038,-0.038,-0.041,-0.044,-0.042,-0.037,-0.032,-0.032,-0.037,-0.034,-0.027,-0.026,-0.029,-0.029,-0.025,-0.023,-0.015,-0.009,-0.014,-0.016,-0.017,-0.023,-0.021,-0.013,-0.015,-0.026,-0.033,-0.029,-0.033,-0.041,-0.037,-0.039,-0.045,-0.045,-0.045,-0.040,-0.033,-0.034,-0.032,-0.032,-0.028,-0.028,-0.025,-0.026,-0.037,-0.040,-0.035,-0.031,-0.031,-0.035,-0.039,-0.037,-0.037,-0.040,-0.043,-0.044,-0.045,-0.047,-0.048,-0.047,-0.042,-0.041,-0.042,-0.031,-0.015,-0.011,-0.016,-0.014,-0.008,-0.005,-0.005,-0.003,0.000,-0.007,-0.009,-0.010,-0.011,-0.018,-0.035,-0.038,-0.035,-0.033,-0.036,-0.035,-0.029,-0.034,-0.038,-0.036,-0.029,-0.030,-0.036,-0.039,-0.040,-0.037,-0.032,-0.025,-0.020,-0.020,-0.028,-0.026,-0.018,-0.020,-0.029,-0.044,-0.069,-0.119,-0.157,-0.134,-0.010,0.208,0.476,0.765,0.976,1.091,1.023,0.716,0.309,0.015,-0.054,-0.034,-0.017,-0.018,-0.032,-0.044,-0.051,-0.049,-0.046,-0.043,-0.035,-0.039,-0.051,-0.051,-0.044,-0.041,-0.041,-0.043,-0.043,-0.042,-0.045,-0.046,-0.042,-0.040,-0.047,-0.054,-0.055,-0.054,-0.056,-0.063,-0.071,-0.072,-0.071,-0.074,-0.070,-0.070,-0.080,-0.089,-0.098,-0.100,-0.100,-0.092,-0.084,-0.083,-0.083,-0.074,-0.059,-0.049,-0.047,-0.037,-0.023,-0.020,-0.024,-0.009,0.010,0.021,0.027,0.029,0.038,0.045,0.044,0.041,0.039,0.029,0.015,0.001,-0.008,-0.023,-0.039,-0.046,-0.045,-0.043,-0.047,-0.049,-0.042,-0.035,-0.036,-0.034,-0.026,-0.026,-0.027,-0.021,-0.016,-0.014,-0.015,-0.016,-0.016,-0.018,-0.021,-0.018,-0.022,-0.028,-0.031,-0.033,-0.033,-0.029,-0.032,-0.036,-0.039,-0.042,-0.046,-0.048,-0.047,-0.054,-0.050,-0.046,-0.042,-0.039,-0.038,-0.035,-0.032,-0.033,-0.033,-0.032,-0.034,-0.031,-0.030,-0.030,-0.030,-0.040,-0.048,-0.049,-0.049,-0.050,-0.051,-0.051,-0.050,-0.048,-0.045,-0.043,-0.043,-0.048,-0.053,-0.077,-0.132,-0.167,-0.142,-0.017,0.208,0.485,0.775,0.985,1.094,1.045,0.793,0.419,0.094,-0.027,-0.024,-0.010,-0.014,-0.024,-0.034,-0.037,-0.041,-0.045,-0.041,-0.043,-0.047,-0.047,-0.049,-0.047,-0.050,-0.055,-0.050,-0.045,-0.044,-0.047,-0.047,-0.045,-0.047,-0.049,-0.049,-0.055,-0.065,-0.068,-0.069,-0.072,-0.074,-0.076,-0.072,-0.070,-0.067,-0.068,-0.067,-0.066,-0.065,-0.062,-0.055,-0.049,-0.043,-0.039,-0.041,-0.040,-0.036,-0.031,-0.023,-0.015,-0.010,-0.008,-0.001,0.010,0.024,0.031,0.031,0.032,0.034,0.032,0.026,0.025,0.022,0.016,0.007,0.005,0.004,-0.005,-0.010,-0.005,-0.007,-0.014,-0.016,-0.017,-0.019,-0.026,-0.030,-0.026,-0.024,-0.025,-0.027,-0.034,-0.038,-0.035,-0.039,-0.039,-0.035,-0.031,-0.027,-0.029,-0.032,-0.034,-0.033,-0.026,-0.024,-0.027,-0.028,-0.023]
// sampling rate
let fs = 250;
// Create the SciChartSurface in the div 'scichart-root'
// The SciChartSurface, and webassembly context 'wasmContext' are paired. This wasmContext
// instance must be passed to other types that exist on the same surface.
const {sciChartSurface, wasmContext} = await SciChartSurface.create("scichart-root");
// Create an X,Y Axis and add to the chart
const xAxis = new NumericAxis(wasmContext);
const yAxis = new NumericAxis(wasmContext);
yAxis.axisAlignment = EAxisAlignment.Left;
yAxis.axisTitle = "ECG (mV)";
sciChartSurface.xAxes.add(xAxis);
sciChartSurface.yAxes.add(yAxis);
// Declare a DataSeries
const xyDataSeries = new XyDataSeries(wasmContext);
for (let index = 0; index < ecg.length; index++) {
const element = ecg[index];
xyDataSeries.append(index/fs,element);
}
// Add a line series to the SciChartSurface
const lineSeries = new FastLineRenderableSeries(wasmContext);
lineSeries.strokeThickness = 3;
lineSeries.stroke = "rgba(0,255,0,1)";
lineSeries.dataSeries = xyDataSeries;
sciChartSurface.renderableSeries.add(lineSeries);
// zoom and pan
const mouseWheelZoomModifier = new MouseWheelZoomModifier();
const zoomPanModifier = new ZoomPanModifier({
xyDirection: EXyDirection.XDirection,
// isEnabled: true,
});
const rubberBandZoomModifier = new RubberBandXyZoomModifier();
const zoomExtentsModifier = new ZoomExtentsModifier();
sciChartSurface.chartModifiers.add(zoomExtentsModifier);
sciChartSurface.chartModifiers.add(zoomPanModifier);
sciChartSurface.chartModifiers.add(rubberBandZoomModifier);
sciChartSurface.chartModifiers.add(mouseWheelZoomModifier);
zoomExtentsModifier.isEnabled = false;
zoomPanModifier.isEnabled = true;
rubberBandZoomModifier.isEnabled = false;
mouseWheelZoomModifier.isEnabled = false;
xAxis.visibleRangeLimit = new NumberRange(0, ecg.length/fs);
// ************ if the range is set to 10, the actual range will be the whole length *************
xAxis.visibleRange = new NumberRange(0, 10);
// Get the xAxis visibleRange
const range = xAxis.visibleRange;
console.log(`Axis VisibleRange is ${range.min}, ${range.max}`);
}
initSciChart();
- Gang Xu asked 1 year ago
- last active 1 year ago
Hello SciChart-Team,
I noticed that the columns in Sparse Column3D and in Uniform Column 3D always start at the XZ surface. Is there any option or way to do so, that columns always use the zero value of the Y axis as their starting point. The visible range of the axes should correspond to the minimum and maximum Y values.
The current behavior can be reproduced in the example SciChart_UniformColumn3D:
If the VisibleRange of the Y-axis goes from 0 to 0.5 then the columns with negative values go down (see screenshot 1)
As soon as the VisibleRange of the Y-axis goes from -0.5 to 0.5, the columns look like this (Screenshot2) We need the columns to look like in Screenshot 1, only that the Y-axis is also visible downwards.
Can the starting point of the columns be changed?
Best regards
Silvester
- Silvester Schneidt asked 2 years ago
- last active 3 months ago
We want to add a toggle button to our chart, that changes the view range between zooming to a particular region of the graph and showing the whole dataset.
To achieve so, we have followed this post that suggests overriding the methods OnCalculateNewYRange and OnCalculateNewXRange inside a custom viewport manager https://www.scichart.com/documentation/win/current/webframe.html#ViewportManager%20-%20Full%20Control%20over%20Axis%20Ranges%20and%20Viewport.html
However, we have found that always overriding those methods does not work, because they get called when the user zooms and pans around the chart, where you want the default range to be returned, not our custom computed one.
Adding a flag to only override the methods when you click the button has also proven tricky, as those methods get called internally many times and it is difficult to control.
Is there an easier way to achieve this behaviour?
Our overridden methods look something along these lines:
/// <inheritdoc/>
protected override IRange OnCalculateNewXRange(
IAxis axis )
{
var computedRange = base.OnCalculateNewXRange( axis );
if ( !( GetXLimitsForCurrentVisibleRangeLevel is null ) )
{
// Method that returns our computed visible range as a function of the toggle button state (CurrentVisibleRangeLevel )
// Returns null when a flag indicates that it has already been called after the toggle button was clicked
var newRange = GetXLimitsForCurrentVisibleRangeLevel( CurrentVisibleRangeLevel );
return newRange ?? computedRange;
}
return computedRange;
}
Many thanks in advance!
Malu
- malĂº Diaz asked 2 years ago
- last active 2 years ago
Hi, i am developing a real time graph plotting application with various series on the chart. The application allows user to turn on and off the auto range using a radio button.
I am using the the viewport manager to adjust the y-axis visible range of each series. But i face an issue. The particular y axis visible range increase abnormally (keep increase indefinitely) when i uncheck the particular visibility checkbox on the legend. It back to normal when i check the visibility checkbox.
I do also provide the code of the ViewPort manager class in the zip file. Besides, i also prepare the video but fail to upload due to size limit.
Please provide me so guide how to solve this and why it happens. Looking forward on your reply. Thanks
- mian ooi asked 2 years ago
- last active 2 years ago
Hi,
I’ve been wondering. In SciChart’s current WPF version, is there any way to configure the default ViewportManager (or create a new customized one in a simple way) such that whenever I call its ZoomExtents method, the X and Y axes’ ranges will include any custom annotations I’ve added to the chart’s annotations collection?
My custom annotations are basically Images, with fixed Width and Height, and I set their X1 and Y1 properties to hold certain data points I have on the chart. The issue is, I need axes’ ranges to include the Image in it’s entirety, meaning I would have to somehow convert their Widths and Heights to “data point values”, since the new visible range should be in terms of data values, if I’m not mistaken.
Any good example to how this could be done?
- Ilan Rozen asked 3 years ago
- last active 3 years ago
Hi! I have an overview control, which uses 2-way binding for the x-axis visible range. I actually followed the WPF Realtime Ticking Stock Charts example, the only difference is that I have a line chart with DateRange x-axis. Everything works, except that the overview’s x-axis maximum visible range is not the same as the actual chart’s visible range. Normally the chart is rolling and the maximum x visible range is always ahead of the latest data, just as it’s in the stock chart example. However, the overview’s x visible range always matches the latest x-axis value of the data. So when the overview’s grip is used to scale the x-axis to go back in time, the chart’s x-axis maximum visible range always jumps to match the latest x-axis value of the data and the chart stops rolling. I just don’t get what am I doing wrong or am I missing something? Please see the attached screenshot and the source code. I’m evaluating SciChart to see if it fits our needs before we’d make a purchase and this is something that should work.
Chart Xaml:
<s:SciChartSurface Grid.Row="0" x:Name="Chart" RenderableSeries="{s:SeriesBinding SeriesViewModels}">
<!-- Create an X Axis -->
<s:SciChartSurface.XAxis>
<s:DateTimeAxis AxisTitle="Time" VisibleRange="{Binding XVisibleRange, Mode=TwoWay}" GrowBy="0, 0.1" DrawMinorGridLines="False" DrawMajorBands="True"/>
</s:SciChartSurface.XAxis>
<!-- Create a Y Axis -->
<s:SciChartSurface.YAxis>
<s:NumericAxis AxisTitle="Count" AutoRange="Always" GrowBy="0.1"/>
</s:SciChartSurface.YAxis>
<!-- Specify interactivity modifiers -->
<!-- Add Zooming, Panning behaviours to the chart -->
<s:SciChartSurface.ChartModifier>
<s:ModifierGroup>
<!-- Allow drag to zoom on Left mouse -->
<s:RubberBandXyZoomModifier ExecuteOn="MouseLeftButton"
RubberBandFill="#33FFFFFF" RubberBandStroke="#AAFFFFFF"
RubberBandStrokeDashArray="2 2"/>
<!-- Allow pan on Right mouse drag -->
<s:ZoomPanModifier ExecuteOn="MouseRightButton" ClipModeX="None" />
<!-- Allow Dragging YAxis to Scale -->
<s:YAxisDragModifier DragMode="Scale"/>
<!-- Allow Dragging XAxis to Pan -->
<s:XAxisDragModifier DragMode="Pan"/>
<!-- Allow Mousewheel Zoom -->
<s:MouseWheelZoomModifier/>
<!-- Allow Zoom to Extents on double click -->
<s:ZoomExtentsModifier ExecuteOn="MouseDoubleClick"/>
<!-- Add a RolloverModifier to the chart (shows vertical line tooltips) -->
<s:RolloverModifier ExecuteOn="MouseMove" ShowTooltipOn="MouseHover"/>
</s:ModifierGroup>
</s:SciChartSurface.ChartModifier>
</s:SciChartSurface>
<!-- Add a Scrollbar, and bind to SciChartSurface.XAxis -->
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<!--<ColumnDefinition Width="75"/>-->
</Grid.ColumnDefinitions>
<!--<s:SciChartScrollbar Grid.Column="0" Axis="{Binding ElementName=Chart, Path=XAxis}"/>-->
<s:SciChartOverview Grid.Column="0"
DataSeries="{Binding SeriesViewModels[0].DataSeries, Mode=OneWay}"
ParentSurface="{Binding Source={x:Reference Name=Chart}, Mode=OneWay}"
SelectedRange="{Binding XVisibleRange, Mode=TwoWay}"/>
</Grid>
View model:
private DateRange _xVisibleRange;
public DateRange XVisibleRange
{
get => _xVisibleRange;
set => SetProperty(ref _xVisibleRange, value);
}
// after appending new data
var LatestXValue = DataSeries.XValues.Last();
var MaxXVisRange = XVisibleRange.Max;
if (MaxXVisRange > LatestXValue)
{
var existingRange = _xVisibleRange;
var newRange = new DateRange(existingRange.Min.AddSeconds(rollBySeconds), existingRange.Max.AddSeconds(rollBySeconds));
XVisibleRange = newRange;
// the overview doesn't have this range, despite of two-way binding
// it has the latest x-axis value as max visible range
}
- Istvan Szarka asked 3 years ago
- last active 2 years ago
Hi,
I’m having trouble with YAxis VisibleRange and ZoomExtentsModifier. I want to change the display range of the Y axis dynamically by changing Min and Max of VisibleRange of YAxis from ViewModel. But when ZoomExtentsModifier is executed by double-click etc, Min and Max changes of VisibleRange are not reflected on the screen. If the screen is enlarged or reduced by means other than ZoomExtentsModifier, this state will be resolved and the changes will be reflected.
Please let me know any solution.
- yo kobayashi asked 4 years ago
- last active 4 years ago
For my chart, I create a TimeSpanAxisViewModel with a VisibleRangeLimit like this…
VisibleRange = new TimeSpanRange(new TimeSpan(0, 0, 0), new TimeSpan(0, 0, 30))
VisibleRangeLimit = new TimeSpanRange(new TimeSpan(0, 0, 0), new TimeSpan(0, 0, 30))
AutoRange = AutoRange.Never
Which properly shows the chart as having 30 seconds of time. Data is added to the chart and it displays as expected.
However, once that data reaches the 30-second limit I’m trying to increase the range by 30 more seconds.
I have a timer that evaluates the elapsed time of a Stopwatch and when that Stopwatch is greater than the current limit (30 seconds) I add to the maximum limit.
Kind of like this…
// If the stopwatch is greater than current range
if (MyStopwatch.Elapsed.TotalSeconds > VisibleRangeSeconds) {
VisibleRangeSeconds += 30;
TimeSpan minimumTime = new TimeSpan(0);
TimeSpan maximumTime = new TimeSpan(0, 0, VisibleRangeSeconds);
XAxes[0].VisibleRange = new TimeSpanRange(min: minimumTime, max: maximumTime);
XAxes[0].VisibleRangeLimit = new TimeSpanRange(min: minimumTime, max: maximumTime);
MySciChart.ChartModifier.ParentSurface.InvalidateElement();
}
I also noticed that VisibleRangeLimit was being updated after the Stopwatch became longer but VisibleRange was staying the same. It wasn’t being updated and I’m not sure why.
What could I be missing that would make the chart grow to the new maximum time?
- Greg Knox asked 4 years ago
- last active 4 years ago
SciChart WPF control
I’m trying to configure the axis range using VisibleRange. Is it possible that in Visible range, I set only min value and then max value is set automatically by tracking the maximum value series has? Same way, if I set max value of VisibleRange then min value is set automatically by tracking min value of the series? How to achieve the VisibleRange setting by just setting one of Min/Max value?
- KC asked 5 years ago
- last active 5 years ago
I want to know whether the FastRenderableSeries is out of VisibleRange or not. I can’t check with getIsVisible() as it could be invisible by the legend.
- Dinesh Sheoran asked 5 years ago
Hi
We use ViewportManager to automatically calculate the visible range of Y-axis for all series in the chart.
<s:SciChartSurface Margin="0, 5, 0, 0" Grid.Column="2"
ViewportManager="{Binding ViewportManager}"
MinHeight="250" MinWidth="250"
x:Name="MainChartSurface"
RenderableSeries="{s:SeriesBinding SeriesVms}"
ChartTitle="{Binding ChartModel.Title}"
Loaded="MainChartSurface_Loaded"
YAxes="{Binding YAxes}"
XAxes="{Binding XAxes}"
Style="{StaticResource YAxisStyle}"
Annotations="{s:AnnotationsBinding ChartModel.Annotations}">
:
: (omitted for brevity)
</s:SciChartSurface>
This approach works fine for one chart.
We now have an additional requirement, which is to have the same VisibleRange for Y-axis over multiple charts. Basically, the VisibleRange should be set to be the [Min, Max] range over all the series in all charts.
Is there a way to achieve this with ViewportManager ?
Is there a way to make several charts related and assign it a common instance of ViewportManager?
BR, Gianni
- Gianni Mellon asked 5 years ago
- last active 5 years ago
When I’m writing VisibleRange=”0, 10″ it works as if I’d wrote “0, 1”.
See my video https://youtu.be/nJTW5-3kO_o
- Denis Denis asked 5 years ago
- last active 5 years ago
If I set AutoRange = “Always” myHorizontalLineAnnotation draws fine. When I set it to “Never” – which I want – my HorizontalLineAnnotation won’t draw. How do I do this? ty
<s:SciChartSurface.YAxis>
<s:NumericAxis AutoRange="Never"
VisibleRange="{Binding ElementName=this, Path=YMinMax}"
<s:HorizontalLineAnnotation HorizontalAlignment="Stretch"
Y1="{Binding ElementName=this, Path=CurrentHigh}"
Stroke="{Binding ElementName=this, Path=ToleranceColor}"
StrokeThickness="1" />
- Paul Richardson asked 6 years ago
- last active 6 years ago
I am implementing a feature to load more historical data when users pan to the left side on a CategoryDateAxis.
To load more, i need to have 2 Date which is the earliest data point i have and the Date that is shown on the X-Axis
For the earliest data point, i can get via IXyDataSeries#getXMin()
But for the other Date, i’m not sure how to get it. I can listen to range changes via IAxisCore#VisibleRangeChangeListener, but the range returns Double. I cant figure out to convert it into a Date
- abc def asked 6 years ago
- last active 6 years ago
I manually re-calculate my displayed axis ranges when new data points are appended or when a specific portion of the data is selected to view from a ListBox, but I would like to leave the axis ranges as-is if the user has zoomed-in (using the built-in ZoomModifiers). Is there a way for my ViewModel to know this has happened so I can avoid recalculating in that case?
Thanks!
- Matthew Becker asked 7 years ago
- last active 7 years ago
Due to the user often needing to select pre-specified ranges of data to view, I handle the X- and Y-axis VisibleRange manually in code.
I also have both RubberBandXyZoomModifier and MouseWheelZoomModifier enabled.
Instead of using a generic ZoomExtentsModifier (which would show all data), I handle a MouseDoubleClick in code and set the VisibleRanges to the bounds of the user-selected data area’s range.
Now if the RubberBand zoom is used followed by a double-click, the VisibleRange.SetMinMax function gets called with the correct values in my code, but that range does not appear on the chart. However if a MouseWheelZoom is used after the RubberBand zoom, it works fine. Is there something about the RubberBand zoom that is stopping the VisibleRange.SetMinMax function values from being recognized by the chart?
Thanks!
- Matthew Becker asked 7 years ago
- last active 7 years ago
Hi,
I have graphs with VisibleRange set in both axes (Y and X). The way I would like my graphs to behave is as follows:
- When the graph is loaded, the VisibleRanges are applied in both axes.
- When I zoom, ZoomExtents applies to both axes
- When I double click on the graph to restore, the initial VisibleRanges as in (1) applies.
NB:
– I set the VisibleRange by Binding
– One of the graphs has a Logarithmic XAxis (Just incase it has a special treatment)
– Currently my graphs set VisibleRanges correctly at first, but not after zoom and restore.
Help me out with how to proceed, please.
Thanks in advance.
Kilosa M.
- Kilosa Magali asked 7 years ago
- last active 7 years ago
Hi,
I’m having difficulties understanding the behaviour of a graph with the following axes:
<s:SciChartSurface.XAxis>
<s:LogarithmicNumericAxis DrawMajorBands="False"
LogarithmicBase="10"
VisibleRange="0.01,5"
DrawMinorGridLines="False"
DrawMajorGridLines="False">
</s:LogarithmicNumericAxis>
</s:SciChartSurface.XAxis>
<s:SciChartSurface.YAxis>
<s:NumericAxis DrawMinorGridLines="False"
DrawMajorGridLines="False"
AxisAlignment="Left"
VisibleRange="{Binding FftDroiteGaucheYAxisRange, UpdateSourceTrigger=PropertyChanged}"/>
</s:SciChartSurface.YAxis>
With XAxis VisibleRange set to “0.01,5” the graph looks like this:
When I change it to a bigger range say “0.01,11” or more FOR THE SAME DATA it gets deformed and looks like:
I tried removing VisibleRange in YAXis but it doesn’t seem to work. Please help.
- Kilosa Magali asked 7 years ago
- last active 7 years ago
Hi,
I am looking for a way to bind the VisibleRange property, What I am doing is
<s:NumericAxis.VisibleRange>
<s:DoubleRange Min="{Binding LowestValue, UpdateSourceTrigger=PropertyChanged}" Max="{Binding LowestValuePlusRange, UpdateSourceTrigger=PropertyChanged}"/>
</s:NumericAxis.VisibleRange>
I get an error “A binding can not be set on the Min property of VisibleRange”.
Help me on how I should bind this please.
- Kilosa Magali asked 7 years ago
- last active 7 years ago
Hi,
After the chart is added with data I want to switch between using the ZoomExtents method and manually setting the AutoRange = Never and setting the VisibleRange. It works using either of them, but after using the ZoomExtents method the axis range is never adjusted to the VisibleRange. Am I doing something wrong or is not possible ?
Using SciChart 3.1.0
Best regards
Marius
- Marius Mathisen asked 8 years ago
- last active 8 years ago
Hi,
in a MVVM scenario, I bind the AnimatedVisibleRange to a property in the view model.
<s:SciChartSurface SeriesSource="{Binding ChartSeries}">
<s:SciChartSurface.XAxis>
<s:NumericAxis AxisTitle="x" AnimatedVisibleRange="{Binding XVisibleRange, Mode=TwoWay}" AutoRange="Never" />
</s:SciChartSurface.XAxis>
<s:SciChartSurface.YAxis>
<s:NumericAxis AxisTitle="y" AnimatedVisibleRange="{Binding YVisibleRange, Mode=TwoWay}" AutoRange="Never" />
</s:SciChartSurface.YAxis>
<s:SciChartSurface.ChartModifier>
<s:ModifierGroup>
<s:MouseWheelZoomModifier IsEnabled="True" XyDirection="XDirection"/>
</s:ModifierGroup>
</s:SciChartSurface.ChartModifier>
</s:SciChartSurface>
Setting the XVisibleRange property in the view model smoothly animates the view. However, when I zoom in the chart with the mouse wheel, the view model property receives no updates (so the XVisibleRange property in the view model always stays on the value initially set by the view model).
The same thing works when I bind he VisibleRange instead of the AnimatedVisibleRange, i.e. in that case I get an update of the view model property on every mouse wheel zoom.
Is this intendend, or a bug? Building a workaround would require additional bindings, which I would like to avoid.
Best regards,
Andree
- Andree Grosse asked 8 years ago
- last active 8 years ago
I attached a scrollbar to a Y axis, and it is functioning as expected except for how it handles VisibleRange.
If my code sets the Y Axis VisibleRange to be smaller than the min/max extent of the data series, the scrollbar behaves as expected – the size of the scrollbar decreases, and I can use it to pan through the full VisibleRange.
However, if I set the VisibleRange to be larger than the min/max extent of the data series, the scrollbar resets the VisibleRange to the actual data series extent as soon as I grab it.
Can I disable this behavior?
I would expect the scrollbar to navigate within the current VisibleRange, and not modify it.
This is using v3.21.0.5511
- wrlear asked 8 years ago
- last active 8 years ago
Hello,
I am now experimenting with SciChart (trail period).
I want to constantly draw the latest 300 points of a real time generated sine wave. I wrote a little program that tries to do this (attached). The sine wave is generated in the OnTimer function. I expected Draw_Limited_Range() function to draw the latest 300 points using XAxis.VisibleRange. Unfortunately this doesn’t work from OnTimer. Same function does work as expected when called from a button (Set VisableRange).
The output window of the debugger keeps displaying following message: A first chance exception of type ‘System.InvalidOperationException’ occurred in WindowsBase.dll
I tried this both on Ver 3.2 and 3.1; On 3.1 it crashes very fast.
What am I doing wrong?
Thanks,
Danny
- Danny Ellenbogen asked 9 years ago
- last active 9 years ago
I’m trying to dynamically create chart surfaces and renderable series, but I’m having trouble binding one of the axes to another one, like you would do with this code in XAML:
<s:CategoryDateTimeAxis VisibleRange="{Binding ElementName=priceChart,
Path=XAxis.VisibleRange,
Mode=TwoWay}" />
I need to accomplish the same thing directly in C# but there are no methods related to binding at all. From the MSDN reference pages I’ve seen that any element that extends FrameworkElement has the Binding property, but it seems the axes don’t extend from that.
Could someone help me out in binding this axis to another axis (for the record, the other one is defined in XAML)?
- Sam Stenvall asked 9 years ago
- last active 9 years ago
We were recently asked on priority support tickets ‘How do I ZoomExtents a SciChartSurface to a specific range, e.g. VisibleRangeLimit, when double clicking on the chart’.
For the benefit of our user-base our solution is below.
- Andrew Burnett-Thompson asked 9 years ago
- last active 9 years ago
I made an example based on the “Vertically Stacked Axes” from SciChart Examples. The main difference is that I can add DataSeries / YAxes on the fly.
The problem is that when I set VisibleRange and VisibleRangeLimit it does not crop the trace (as you can see on the Tan traces that are drawn on the whole surface).
Is there any way to crop the traces to VisibleRange of corresponding Axis?
- Jan Kaiser asked 9 years ago
- last active 9 years ago
I want YAxis Auto Scale less than the value max 10% and greater value min 10%, how?
- kingsoff asked 10 years ago
- last active 8 years ago