How can I help you?
Essential Studio® for Flutter Release Notes
Common
The Flutter widgets’ minimum Dart version has been upgraded to 2.17.0 from 2.12.0.
DataGrid
Features
- #FB37854 - Provided the support to change the shape of the built-in checkbox column.
- #FB38108 - Provided the support to change the filter icon and its color. The padding around the filter icon can also be customized.
- #SF412063 - Provided the support to customize the filter options in the filter popup. Users can hide the sorting and “Clear Filter” options and show only the checked listbox view or advanced filter popup view to apply filtering.
- #F178208 - Provided the support to customize the color of the sort order number and its rounded background.
- #F177936 - Provided the support to change the elevation effect when setting the
frozenPaneLineColorproperty.
Bug fixes
- #SF422821 - The filtering is now properly applied when programmatically adding the filter conditions and filter popup menu is now opened with proper items in checked listbox.
XlsIO Beta
Features
- Provided support for creating named ranges in the worksheet.
- Provided support to customize page setup settings.
- Provided support to create freeze panes in Excel worksheet.
- Provided support for new chart types such as Line with marker, 100% line with marker, Stacked line with marker, 100% stacked line with marker, 3D line, 3D column clustered, 3D 100% stacked column, 3D stacked column, 3D bar, 3D stacked bar, 3D 100% stacked bar, 3D pie, Pie of pie, Pie of bar, Doughnut, High-low-close stock, Open-high-low-close stock, Volume-open-high-low-close stock, Volume-high-low-close stock chart types.
Breaking Changes
-
Namesclass is created to maintain the named range collection. -
Nameclass is created to represent the named range. -
namesproperty added underWorkbookclass maintains the workbook named range collection. -
namesproperty added underWorksheetclass maintains the worksheet named range collection. -
countproperty underNamesclass maintains the count of named ranges. -
parentWorksheetproperty ofNamesclass represents the parent worksheet of the named range collection. - New named ranges can be added through
Addmethod ofNamesclass. - A named range can be removed from a named range collection through
removemethod ofNamesclass. - A named range at a specific index can be removed from a named range collection through
removeAtmethod ofNamesclass. -
containsmethod ofNamesclass helps to identify whether a specific named range is present in the named range collection. -
indexandnameproperties ofNameclass return the index of the named range in the collection and the name of the named range respectively. -
refersToRangeandvalueproperties ofNameclass represent the range of the worksheet that is referred to and the value of the worksheet respectively. -
isVisibleofNameclass represents whether the named range is visible. -
isLocalofNameclass represents whether the named range is local. -
worksheetproperty ofNameclass represents the parent worksheet of the named range. -
scopeproperty ofNameclass represents the scope of the named range. -
descriptionproperty ofNameclass represents the comments of the named range. -
deletemethod ofNameclass helps to delete the named range. - Created
PageSetupclass to maintain the page setup settings. -
pageSetupproperty ofWorksheetclass represents the page setup settings of the worksheet. -
orientationproperty ofPageSetupclass helps to define the orientation of the page throughExcelPageOrientationenumeration. -
printTitleColumnsandprintTitleRowsproperties ofPageSetupclass repeats the required columns and rows on each page. -
isCenterHorizontalandisCenterVerticalproperties ofPageSetupclass help to align the sheet content in the center. -
isDraftproperty ofPageSetupclass helps to print the worksheet as a draft without graphics. -
printQualityproperty ofPageSetupclass helps to select the required print quality in dpi. -
leftMargin,bottonMargin,footerMargin,headerMargin,rightMarginandtopMarginproperties ofPageSetupclass represents the respective margin in inches. -
showGridlinesproperty ofPageSetupclass helps to enable or disable the gridlines. -
orderproperty ofPageSetupclass represents the order in which the worksheet has to be printed, throughExcelPageOrderenumeration. -
printAreaproperty ofPageSetupclass represents the worksheet range to be printed. -
showHeadingsproperty ofPageSetupclass indicates whether to print the row and column headings. -
printErrorsproperty ofPageSetupclass helps to select the value to be printed instead of cell errors in the worksheet, throughCellErrorPrintOptionsenumeration. -
isBlackAndWhiteproperty ofPageSetupclass helps to select whether the worksheet has to be printed in black and white. -
firstPageNumberproperty ofPageSetupclass helps to set the required first-page number. -
isFitToPageproperty ofPageSetupclass helps to fit the content to the page. -
fitToPagesTallproperty ofPageSetupclass helps to scale the height of worksheet pages. -
fitToPagesWideproperty ofPageSetupclass helps to scale the width of worksheet pages. -
autoFirstPageNumberproperty ofPageSetupclass indicates whether to use auto first-page number. -
paperSizeproperty ofPageSetupclass helps to select the required page size throughExcelPaperSizeenumeration. -
freezePanesmethod ofRangeclass helps to freeze the selected worksheet range. -
unfreezePanesmethod ofWorksheetclass helps to remove the existing panes from the worksheet. -
ChartSerieDataFormatandChartFormatclasses are created to format the chart series and chart respectively. -
markerBackgroundColorproperty ofChartSerieDataFormatclass helps to select the background color of the marker. -
markerBorderColorproperty ofChartSerieDataFormatclass helps to select the border color of the marker. -
markerStyleproperty ofChartSerieDataFormatclass helps to select the required marker type throughExcelChartMarkerTypeenumeration. -
commonSerieOptionsproperty ofChartSerieDataFormatclass represents the chart series options. -
pieExplosionPercentproperty ofChartSerieDataFormatclass represents the distance of a pie slice from the center of the pie chart. -
firstSliceAngleproperty ofChartFormatclass represents the angle of the first slice in a doughnut or pie chart. -
holeSizePercentproperty ofChartFormatclass represents the percentage of hole size of a doughnut chart. -
gapDepthproperty ofChartFormatclass represents the distance between the data series in a 3-D chart. -
gapWidthproperty ofChartFormatclass represents the space between the primary and secondary sections. -
pieSecondSizeproperty ofChartFormatclass represents the size of the primary pie. -
rotation,perspective, andelevationproperties ofChartclass represent the rotation, perspective, and elevation of the 3-D chart view. -
depthPercentproperty ofChartclass represents the depth of a 3-D chart as a percentage of the chart width. -
rightAngleAxesproperty ofChartclass indicates whether the chart axes are at right angles. -
serieFormatproperty ofChartSerieclass represents the chart series format.