What properties should I change to change the position of the information in the bottom left of the chart?
- JONGBOG JOUNG asked 1 year ago
- last active 1 year ago
I saw an obj file appear on the chart through SceneObject But I want to use custom polygon as a point marker for my ScatterRenderableSeries. Can you apply obj file to PointMarker3D? Or How do I add 3d polygon to chart via obj file in viewmodel?
- KEUNYOUNG LEE asked 1 year ago
- last active 1 year ago
Hi. I’m trying to add 3DChart to my vue project. And I have a question about the configuration. Can I download .data and .wasm files from the CDN.
For 2D charts , I’ve used recomendation of your release v.2.2:
SciChartSurface.useWasmFromCDN()
It works for me. How I can use CDN for SciChart3DSurface?
- Volodymyr Stoyanovskyy asked 2 years ago
- last active 2 years ago
I was able to develop and run everything using the scichart alpha build from Jun 11th.
This includes SciChart2D, SciChart3D, with a minor error.
I was using .NET Core 3.0 Preview 6+, Visual Studio 16.3 Preview on a Win7 box.
However, the client wants to upgrade to Windows 10.
So I installed Visual Studio 16.3 (2019), and .NET Core 3.0 and I was able to build all the packages etc.
However, when launching the WPF part of the application, I was at first encountering AccessViolation exceptions in CreateRenderTarget().
I removed all my SharpDX components, and tried again. I was able to get around this problem by using a version of SciChart 6.0 greater than the Jun 11th alpha version – v. 6.0.0.12382-alpha.
I can now load SciChart2D package.
However, SciChart3D is now throwing null reference exceptions when loading. I’ve included the screenshot. This occurs even with the 6.0.0-beta version.
Please advise.
- Srikant Krishna asked 5 years ago
- last active 5 years ago
Hello
I have 2 charts, a 2D Heatmap and a 3D Waterfall chart, and I want to be able to programmatically change their color palettes.
The 2D heatmap is set up like this, with the GradientStops bound to an ObservableCollection:
...
<s:HeatmapColorPalette x:Key="HeatmapColorPalette" Maximum="{Binding MaxValue,Mode=TwoWay}" GradientStops="{Binding ColorPalette}"/>
...
<s:SciChartSurface.RenderableSeries>
<s:FastUniformHeatmapRenderableSeries
x:Name="heatmapSeries"
DataSeries="{Binding Data}"
ColorMap="{StaticResource HeatmapColorPalette}">
</s:FastUniformHeatmapRenderableSeries>
</s:SciChartSurface.RenderableSeries>
...
This works as expected. When the binding changes the palette/heatmap changes.
The 3D waterfall is set up the similarly:
...
<s3D:GradientColorPalette x:Key="GradientColorPalette" IsStepped="False" GradientStops="{Binding ColorPalette}" />
...
<s3D:SciChart3DSurface.RenderableSeries>
<s3D:WaterfallRenderableSeries3D
x:Name="waterfallSeries"
DataSeries="{Binding Data3D}"
YColorMapping="{StaticResource GradientColorPalette}"
SliceThickness="1">
</s3D:WaterfallRenderableSeries3D>
</s3D:SciChart3DSurface.RenderableSeries>
...
This, when passed the same data, doesn’t render the chart.
This chart otherwise works fine if I define the GradientStops statically in the XAML.
This is the GradientStops definition (in f#):
let BlueRed =
new ObservableCollection<GradientStop>([
new GradientStop(Color.FromRgb(0x00uy,0x00uy,0xFFuy),0.0)
new GradientStop(Color.FromRgb(0xFFuy,0x00uy,0x00uy),1.0)
])
I am not sure what I am missing.
(edit: apologies for formatting issues in the question)
- Joseph Roorda asked 5 years ago
- last active 5 years ago
I want to implement in scichart3d viewport3d geometry object select
entity object (viewport3d geometry object) selection is not Support.
so i think I tried to put a series in the inside of an object so that I could select it.
but series overwritten with viewport3d object are not selected.
so I made it disappear temporarily when I clicked on an object, but it was not practical enough.
Below is an example I wrote.
I hope I can help you see this.
Is there any other way to implement the ability to select viewport3d geometry objects?
- Lee JunHee asked 6 years ago