|
S.No |
Query |
Comments | |
|
1 |
Chart clarity is missing while printing sheet from the spreadsheet control. |
This issue can be resolved by setting the ScalingMode property of the workbook as in the below code sample.
Note: In the spreadsheet control, chart is rendered as image when converting the excel to PDF file using ExcelToPDFConverter of the XlsIO. But in MS-Excel, chart is directly rendered, so clarity will be missing only after zooming. In normal view, chart clarity will be good.
| |
|
2 |
PrintArea support in the spreadsheet |
You can achieve this support by setting the PrintArea property of the workbook. This should be set before converting the excel to PDF document as in the below code sample.
| |
|
3 |
PageBreak view support in the spreadsheet |
Currently spreadsheet control does not have support for PageBreak view.
|
|
var series = spreadsheet.ActiveSheet.Charts[0].Series;
var activeSheet = spreadsheet.Workbook.Worksheets[1];
spreadsheet.SetActiveSheet(activeSheet.Name);
var chart = spreadsheet.AddChart(spreadsheet.ActiveSheet);
chart.Series.Add(series[0]);
chart.Series.Add(series[1]);
(chart as ShapeImpl).Top = 100;
(chart as ShapeImpl).Left = 100;
spreadsheet.ActiveGrid.GraphicModel.InvalidateGraphicObjects();
spreadsheet.ActiveGrid.GraphicModel.InvalidateGraphicVisual();
|