Hello,
This question is related to this discussion :
https://www.scichart.com/questions/wpf/export-chart-with-heatmapcolormap
I want to export a chart as XPS and have the HeatmapColorMap on the XPS. I put the HeatmapColorMap inside a CustomAnnotation. I had an issue with the ticks and labels not appearing on the printed XPS so I was advised to use a workaround :
public class SciChartSurfaceEx : SciChartSurface
{
protected override SciChartSurfaceBase CreateCloneOfSurfaceInMemory(Size newSize)
{
// Grab custom annotation that stores HeatmapColormap on a real chart
var originalColormapAnnotation = (CustomAnnotation)this.Annotations.Where(x => x.GetType() == typeof(CustomAnnotation)).FirstOrDefault();
var originalColorMap = originalColormapAnnotation.Content as HeatmapColorMap;
// Perform exporting functionality(serializing\deserializing)
var cloned = (SciChartSurface)base.CreateCloneOfSurfaceInMemory(newSize);
var newWindow = new Window();
newWindow.Content = cloned;
newWindow.Show();
newWindow.Close();
return cloned;
}
}
Opening a new window is a workaround to prevent the HeatmapColorMap from disappearing after exporting, because it disappears otherwise.
This works fine when exporting a PNG at non-default size but it does not work when exporting as XPS. I get the following exception :
System.InvalidOperationException: ‘Specified element is already the logical child of another element. Disconnect it first.’
Why do I have this exception ? Is there any way around it ?
There are quite a few bugs when exporting charts, it would be nice to have them fixed.
Thank you in advance !
- Renaud Danniau asked 1 year ago
- last active 2 months ago
Hello SciChart,
I’m using SciChart:PerformanceHelper.EnableExtremeResamplers=”True” on my SciChart surface to display data with multiple gaps properly (NaN values), however the XPS output using ExportToFile does not work well and only renders the data to the first gap. Is there a workaround to this issue or how can it be fixed? Thank you.
Kind regards
Ondřej
- Ondrej Havel asked 4 years ago
- last active 3 years ago
Microsoft has announced that it plans to retire the XPS file format and remove the XPS viewer in future Windows installations. I presume this mean the “Export to XPS” feature will not be useful for much longer. Given this news, does SciChart have plans to support a different vector format like SVG instead?
- David La Fleur asked 5 years ago
Hello,
I would like to know if there is a possibility to export 3d charts to XPS format. I’ve tried using ExportToFile extension method:
sciChart.ExportToFile(filePath, ExportType.Xps, true);
While this method works well on 2d chart, it throws an exception:
InvalidCastException: Unable to cast object of type ‘SciChart.Charting3D.SciChart3DSurface’ to type ‘SciChart.Charting.Visuals.SciChartSurface’.
Stack Trace:
at SciChart.Charting.Visuals.SciChartSurfaceBase.CreateCloneOfSurfaceInMemory(Size newSize)
at SciChart.Charting.Visuals.SciChartSurfaceBase.ExportToFileInternal(String fileName, ExportType exportType, Boolean useXamlRenderSurface, Nullable`1 size)
at SciChart.Charting.Visuals.SciChartSurfaceBase.ExportToFile(String fileName, ExportType exportType, Boolean useXamlRenderSurface)
…
It suggests there is no way to export 3d charts, am I correct?
- Wojciech asked 6 years ago
- last active 6 years ago
Hi,
I’m trying to export my graphs using the XamlRenderSurface and the ExportToXPS extension function.
I can export a BitmapImage from it fine but the xps image only has the Axis lines and a vertical annotation on it. See images for comparison.
Also, it outright crashes in some other graphs I have on Get MinorDelta because of a null reference exception, no additional info is given out by DebugWhySciCharDoesntRender = true. Likewise in this case, I can export to bitmap just fine. I am using custom tick providers.
I should also note that I’m rendering the charts from memory they’re not visually displayed when export them.
- kewur asked 6 years ago
- last active 6 years ago
Hi, I am trying to export an XyScatterRenderableSeries based on a XyzDataSeries<double,double,double> to XPS. The coloring is based on the z value and works perfectly in the application itself. The problem is that when exporting all the data and labels are perfectly visible ( no more vertical mirroring etc.), however all points are grey. I do see by setting a breakpoint on the OverridePointMarker below that the palette is used, just don’t see it in the end result. Anyone any tips or ideas what is going wrong?
Part of the Palette Provider;
public PointPaletteInfo? OverridePointMarker(IRenderableSeries rSeries, int index, IPointMetadata metadata)
{
var rxyz = rSeries as XyScatterRenderableSeries;
var xyz = rxyz?.DataSeries as XyzDataSeries<double, double, double>;
if (xyz == null) return null;
var z = xyz.ZValues[index];
var i = Convert.ToInt32((_colormap.GetUpperBound(0) * z) / _max);
var c = _colormap[i];
return new PointPaletteInfo()
{
Fill = c,
Stroke = c
};
}
Code to generate the chart in memory and export it to XPS
var colormap = new ColorMappingAgain((Brush)Resources["DefaultBrush"], 100);
var x = new ObservableCollection<IRenderableSeries>() {HeatmapSeries};
foreach (var y in x)
y.PaletteProvider = colormap;
var surface = new SciChartSurface()
{
RenderSurface = new XamlRenderSurface(),
ChartTitle = name,
FontSize = (double) dpi * fontsize / 96,
XAxes = xAxes,
YAxes = yAxes,
RenderableSeries = x,
};
foreach (var y in x)
y.PaletteProvider = colormap;
SciChart.ExportToFile(@"C:\Temp\again.xps",ExportType.Xps,true);
SciChart.ExportToFile(@"C:\Temp\again2.xps", ExportType.Xps, false);
- Michel Bieleveld asked 7 years ago
- last active 7 years ago
Dear all, I am trying to export a heat map that I have generated that you can see at the right side of the attached image. However, the resulting XPS generated is the figure at the left. As one can see they are not very similar as one would expect. I have checked my code, but can’t seem to find the problem. Parts of my code are shown here to give more info. If anyone has tips why this strange result may occur , let me know please.
<s:SciChartSurface x:Name="sciChart" ChartTitle="Carbon and DBE">
<s:SciChartSurface.RenderableSeries>
<s:FastHeatMapRenderableSeries x:Name="heatmapSeries" Opacity="0.5" Maximum="100">
<s:FastHeatMapRenderableSeries.ColorMap>
<LinearGradientBrush>
<GradientStop Offset="0" Color="DarkBlue"/>
<GradientStop Offset="0.2" Color="CornflowerBlue"/>
<GradientStop Offset="0.4" Color="DarkGreen"/>
<GradientStop Offset="0.6" Color="Chartreuse"/>
<GradientStop Offset="0.8" Color="Yellow"/>
<GradientStop Offset="1" Color="Red"/>
</LinearGradientBrush>
</s:FastHeatMapRenderableSeries.ColorMap>
</s:FastHeatMapRenderableSeries>
</s:SciChartSurface.RenderableSeries> .
</s:SciChartSurface>
and code
double[,] a = x.Normalized2DArray(100);
Heatmap2DArrayDataSeries<double, double, double> heatmap = new Heatmap2DArrayDataSeries<double, double, double>(a, ix => (double)ix * x.binSizeX, iy => (double)iy * x.binSizeY);
heatmapSeries.DataSeries = heatmap;
sciChart.ExportToFile(@"C:\Temp\chart.xps", ExportType.Xps, true, new Size(2000, 2000));
- Michel Bieleveld asked 7 years ago
- last active 7 years ago