Skip to main content

Release Notes

1.6.6 (April 19th, 2024)

New Features

All Platforms

  • Added an optional description text box, controlled by the property showDescription, to the RevealView.
  • Exporting a grid or pivot to PDF will now generate "overflow" tables containing the columns that would otherwise not fit the width of the page.
  • Grid column width is now respected on PDF export.
  • Improved pivot grid visualization appearance in exports to Excel.
  • (Beta) Added server side paging support to the grid visualization. To enable this functionality and have it appear in the visualization editor Settings pane, set $.ig.RevealSdkSettings.enableBetaFeatures to true. Paging is supported in the following providers: SQL Server, MySQL, BigQuery, PostgreSQL, SyBase, Athena, and Oracle. The providers that support stored procedures will have grid paging disabled when a stored procedure is selected as these can't be queried like tables to return a range of rows. Additionally, paging is not available when processing data on server is false, as well as when using blended data.
  • SkiaSharp, SkiaSharp.HarfBuzz, and SkiaSharp.NativeAssets.Linux v2.88.3 dependency updated to v2.88.7.
  • A flag was added to the RevealView to control whether or not data tooltip previews in the visualization editor. They are turned off by default to prevent a query getting the first 5 rows. To enable this tooltip, set isPreviewDataInVisualizationEditorEnabled to true.
  • Blending is now supported in MySql when using process data on server.
  • Radial charts have a new look & feel. The old L&F are deprecated but if needed, they can be restored by setting RevealSdkSettings.EnableNewCharts = false.
  • Bar and column charts now include an overlap and gap setting in the visualization editor Settings pane. This allows you to control the amount of overlap between the bars and the amount of space between the groups.
  • The Treemap visualization now shows a tooltip on hover and highlights the node.
  • Playwright v1.27.2 dependency updated to v1.42.0.

Node

  • Added dataSourceItemFilter property to the RevealOptions that allows the filtering of data sources items in the data source dialog
dataSourceItemFilter?: (userContext: IRVUserContext | null, dataSourceItem: RVDataSourceItem) => Promise<boolean>

Bug Fixes

All Platforms

  • Pie & Doughnut charts are not displayed when exporting from UI.
  • Deleting a data blend while a calculated field depends on it won't delete the calculated field.
  • Calling a function in Redshift produces an error.
  • Postgres functions not working.
  • RevealView positioning and sizing when using transform:scale style on the container or any ancestor element.
  • Setting canAddDateFilter causes exception.
  • Save event args.isNew is false if dashboard property is set to null or undefined.
  • Stored procedures parameter screen will sometimes pull previous data or nothing at all.
  • Scroll stops working on pop-up element when using search bar.
  • Scatter Map indicators hover region shifts with zoom.
  • Fraction digits are not shown in Choropleth Map tooltip.
  • Filter value above 3000+ is not preserved.
  • Errors with renamed pivot fields in post-calculated field UI.
  • Preview data cell is not being reused causing it to be rendered multiple times.
  • Grids crash on MacOS ARM64.
  • Pie chart legend disappears when there is enough space to show it.
  • MySql blending with Process Data on Server off produces error.
  • Hover event not behaving as intended on slice charts.
  • Grand Totals are not shown in the Pivot Grid visualizations.
  • Incorrect grand totals values shown when using Analysis Services data provider.
  • Dashboard and visualization filters with wrong grand totals when using Analysis Services data provider.
  • Field name modifications lost after reordering values on Pivot Grid.
  • Error "...hierarchy already appears in the Axis1 axis." in Analysis Services.
  • Wrong results when applying 'Top N' filter in Analysis Services.
  • Resource based visualization fetches wrong cache entry.
  • Wrong cache entry is hit when using blending.
  • Can't set focus to search box after the browser goes to background.

1.6.4 (February 14th, 2024)

Breaking Changes

  • Property name showExportToPowerpoint changed to showExportToPowerPoint
  • Scatter and Bubble Charts have a new look & feel. The old look & feel are deprecated, if needed they can be restored by doing RevealSdkSettings.enableNewCharts = false

New Features

All Platforms

  • Exposed description property on RVDashboard
  • Added dashboard title to individual Excel sheets
  • Include dashboard filters when exporting to Excel and PDF
  • Removed PostgreSQL stored procedures from tab as they're not currently supported

Bug Fixes

All Platforms

  • Athena error message not helpful when missing data source item setting
  • S3 DS "Region has not been set" error when source item provider is not implemented
  • Redshift DS "Host can't be null" error when source item provider is not implemented
  • MySql "unable to connect" error when source item provider is not implemented
  • Postgres error selecting table when data source item provider is not implemented
  • Wrong case-insensitive grid sorting in some scenarios
  • FilterChanged event does not fire when changes are made to selected items
  • Wrong initialization of "Process Data On Server" flag
  • Error on formatting uncaught "TypeError: t.mkFormat is not a function"
  • SQLite exceptions cause crash on M1 Mac/ARM64
  • Incorrect CURRENTTIMEZONE() when adding fields from another data source
  • KPI vs Time Now Showing Empty Values in Current Month
  • Malfunction of date type column sorting in grid or pivot type visualizations
  • Multiple popups displayed when exporting while visualizations are being loaded
  • When exporting an 413 error is thrown
  • Multiple instances of RevealView not supported
  • Map location name comparison is case sensitive

Java

  • Number rounding is not working for SSRS or CSV data
  • MySql setting custom query doesn't work
  • Export timing out and producing error

Node

  • Current Chromium version not working in Node + MAC M1

1.6.3 (January 15th, 2024)

  • Patch release to fix dependency conflict for projects targeting ASP.NET 7.0. Updated System.Security.Cryptography.Pkcs 6.0.3 => 7.0.0

1.6.2 (January 5th, 2024)

New Features

All Platforms

  • The visualization background color picker was updated to use Coloris. With this enhancement the property canChangeVisualizationBackgroundColor has been marked as obsolete because we are now enabling the visibility of background color setting by default. Additionally, the Spectrum dependency is no longer required.
  • The sqlite storage for cache file tabulardata.sqlite is now disabled by default to prevent growing without limit
  • When $.ig.RevealSdkSettings.enableActionsOnHoverTooltip is enabled, the actions tooltip is now available on the Pivot visualization. Hovering on a chart visualization will now show the tooltip when within a certain number of pixels from the data point.
  • Support for calculated fields using the following functions on a SQL Server data source with "Process Data on Server" enabled; fyear, and, or, concatenate, replace, date, time, hour, minute, second, formatdate, and datevalue.
  • New client event named onUrlLinkRequested added to allow for intercepting and modifying URL links in dashboards at runtime
revealView.onUrlLinkRequested = (args) => {
return args.url + "&webUpdated=true&cellValue=" + args.cell.value();
};
  • Added ability to export a single visualization using server export.
var pdfOptions = new PdfExportOptions();

pdfOptions.Visualizations.Add(new VisualizationExport() {Title = "Sales by Product" });
pdfOptions.Visualizations.Add(new VisualizationExport("9ea0b74d-8944-474c-5e8c-78ce2b30d16c"));

//or
pdfOptions.Visualizations.AddByTitle("Sales by Product");
pdfOptions.Visualizations.AddById("9ea0b74d-8944-474c-5e8c-78ce2b30d16c");


await _exporter.ExportToPdf(dashboardId, path + ".pdf", pdfOptions);
  • Support added for custom colors on client & server export
PdfExportOptions options = new PdfExportOptions();

options.InitScript = @"
function init(revealView){
$.ig.RevealSdkSettings.theme = new $.ig.MountainDarkTheme();

revealView.refreshTheme();

revealView.onVisualizationSeriesColorAssigning = function (visualization, defaultColor, fieldName, categoryName) {
if (categoryName === ""Critical"") {
return ""rgb(0,0,0)"";
}
return defaultColor;
}
}";

await _exporter.ExportToPdf(dashboardId, path, options);
  • Added the ability to control edit mode
    • enterEditMode()
    • exitEditMode(applyChanges: boolean)
    • onEditModeEntered
    • onEditModeExited
<button onclick="revealView.enterEditMode()">Start editing</button>
<button onclick="revealView.exitEditMode(false)">Stop editing (discard)</button>
<button onclick="revealView.exitEditMode(true)">Stop editing (save)</button>

<div id="revealView" style="height: 920px; width: 100%;"></div>

<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js" ></script>
<script src="https://unpkg.com/dayjs@1.8.21/dayjs.min.js" ></script>
<script src="https://dl.revealbi.io/reveal/libs/1.6.2/infragistics.reveal.js"></script>
<script type="text/javascript">

//set this to your server url
$.ig.RevealSdkSettings.setBaseUrl("http://localhost:5111/");
var revealView = new $.ig.RevealView("#revealView");

$.ig.RVDashboard.loadDashboard("Sales", (dashboard) => {
revealView.dashboard = dashboard;
});

</script>
  • Added a role property to RVSnowflakeDataSoure to allow for accessing different databases for different connections
  • Added support for stored procedures in the MySQL connector
  • Added a maxFilterSize property to RevealSdkSettings for controlling the maximum number of values displayed in a dashboard filter

ASP.NET

  • Added support for setting global filters for headless exports
PdfExportOptions options = new PdfExportOptions();
options.DateFilter = new RVDateDashboardFilter(RVDateFilterType.CustomRange,
new RVDateRange(new DateTime(2022,4,1), DateTime.Now)
);

options.Filters.Add(new RVDashboardFilter("incident_severity", new List<object> { "Medium", "Critical" }));
options.Filters.Add(new RVDashboardFilter("team", new List<object> { "Digital Security Center"}));

await _exporter.ExportToPdf(dashboardId, path, options);

ASP.NET & Node

  • Added custom query support for the MongoDB connector
  • Added support for data blending (joining) on server for the MongoDB connector
  • Added support for ARM64 for ASP.NET and Node on MacOS and Linux

Java

PdfExportOptions options = new PdfExportOptions();	

RVDateDashboardFilter dateFilter = new RVDateDashboardFilter(RVDateFilterType.CUSTOM_RANGE,
new RVDateRange( new GregorianCalendar(2022,4,1), new GregorianCalendar())
);

options.setDateFilter(dateFilter);

options.getFilters().add(new RVDashboardFilter("incident_severity", new ArrayList<Object>(Arrays.asList("Medium", "Critical"))));

Bug Fixes

All Platforms

  • Setting canAddDateFilter caused an exception
  • Redshift filters don't show values besides the 3k limit when using search on select values
  • The text "Show Data Labels" is not translated when viewing field settings in the visualization editor
  • Pivot grid when using the SSAS connector mixed up rows when sorting
  • KPI vs Time - overlapping text when state changes from having data to having no data to display
  • Pointer cursor shows when hovering over "add your first visualization" when there is no click event
  • Localization issue on server side when client is using another language
  • REST connector crashes when no url is provided in client
  • Tooltip showing blank hint in the New Calculated Field window
  • Data source items should not copy over the data source subtitle
  • Grid visualization takes forever to load when there's a lot of data
  • Spanish translation for Snowflake host shows "Anfitrion" and it shouldn't
  • When configuring chartTypes the AreaChart doesn't seem to respond to any changes
  • Server-side dashboard export problem due to build number appending to version

ASP.NET & Node

  • The MongoDB connector wasn't filtering documents without a field set when filtering by empty fields.

1.6.1 (October 25th, 2023)

Breaking Changes

All Platforms

  • Enabling single visualization mode now automatically sets these properties to false on the RevealView: showChangeVisualization, canEdit, showMenu, showStatisticalFunctions, showFilters.
  • The window.revealDisableKeyboardManagement property is now set to true by default. When set to true tab focus does not stop on the RevealView.
  • Slice Charts (pie, funnel, and donut) have a new look & feel. The old L&F is deprecated but if needed, they can be restored by doing RevealSdkSettings.enableNewCharts = false.

New Features

All Platforms

  • Headless export of a individual visualization
  • The noopener attribute added to external dashboard links
  • The property VisualizationMargin was added to RevealTheme for changing the margin between visualizations
  • Improvements to the single visualization; 1) Dashboard title, and breadcrumb control using the properties showBreadcrumb & showBreadcrumbDashboardTitle, 2) the property showTitle was added to RVVisualization, and 3) the properties RevealView: showChangeVisualization, canEdit, showMenu, showStatisticalFunctions, showFilters are automatically set to false when enabling single visualization mode
  • SQL-based stored procedure output their query to the log and inform of data type mismatches

ASP.NET & Node

  • New Data Source: MongoDB

Bug Fixes

All Platforms

  • Postgres extremely slow when loading list of tables when having hundreds of schemas. Schemas are now filtered on the server to improve performance
  • The window.revealDisableKeyboardManagement property is now set to true by default. When set to true tab focus does not stop on the RevealView.
  • Repeated uses of the chart chooser would cause the app to become non-responsive
  • Scatter map not correctly showing values that use decimal places
  • Can't filter null values
  • RevealView not supporting backup fonts specified in font-family
  • Tables and views tabs not visible when using a dark theme
  • Choropleth chart displays green color on areas with no data when language is not set to English
  • Exception when exiting editor after changing calculated field used with the KPI visualization
  • Treemap not visible in PowerPoint and PDF export
  • Error dialog when using an image or PDF with an RVWebResourceDataItem
  • Export options popover doesn't close once an option is selected
  • RVODataDataSource's url property was being copied over to the RVODataDataSourceItem
  • Assigning color to series offset colors when "Others" category was visible

Java

  • Headless export not working on Linux

1.6.0 (August 28th, 2023)

Breaking Changes

All Platforms

  • Changes in license keys: License key is now required, even for trial mode. The SDK will fail to initialize if the license key is missing or invalid. In addition, the license format has changed and the new format is the only one supported. Request your new license key to your sales rep. Trial license keys are available by registering here.
  • availableChartTypes property has been removed. It's replacement is the 'chartTypes' property described in the 'New Features' section below.
  • The dependency to 'libgdiplus' has been removed to enhance our cross-platform performance.
  • The SDK no longer depends on Quill.js.

ASP.NET

  • Most data sources have been removed from the core package. They're now available as separate packages. Data Source packages are REQUIRED to be registered. The information about the supported data sources and the corresponding add-in nuget packages can be found here.
  • Reveal now requires .net 6.0 or newer.
  • Data related objects have been moved into the Reveal.Sdk.Data namespace
  • Data Source objects (ex: RVSqlServerDataSource) have been moved into their respective namespaces (ex: Reveal.Sdk.Data.Microsoft.SqlServer)

New Features

All Platforms

  • Ability to add custom visualization as Chart Types in the visualization editor. The new `chartTypes' property allows this, as well as modifying the icon, title and grouping of existing chart types, or making them unavailable:
//Update existing configuration
var barConfig = revealView.chartTypes.find(x => x.chartType == 'BarChart');
barConfig.icon = 'https://host:port/images/bar-chart.png';
barConfig.groups = ["Enterprise Visualizations", "HR", "Category"];

//Add pre-configured custom visualization
revealView.chartTypes.push({
title: "Custom Visualization",
url: "https://host:port/customViz.html",
icon: "https://host:port/icon.png",
groups: ["HR"]
});

//Delete Grid configuration
var gridConfig = revealView.chartTypes.find(x => x.chartType == 'Grid');
revealView.chartTypes.splice(revealView.chartTypes.indexOf(gridConfig), 1);
  • (Beta) Chart actions available while hovering the mouse. Turn on using $.ig.RevealSdkSettings.enableActionsOnHoverTooltip = true.
  • Calculated fields expression language now support decimals specified without a leading '0' (e.g. '.5' meaning '0.5').
  • Added support in BigQuery data source for the following calculated-fields functions: YEAR, QUARTER, MONTH, DAY, HOUR, MINUTE, SECOND, REPLACE, WEEKDAY, MONTHNAME, MONTHSHORTNAME, EMPTY, RANDBETWEEN.
  • Improved Copy & Paste. Now it works across browser tabs / pages refreshes.
  • Make the RevealView resize itself when its container is resized.
  • Add Stored procedure support to Oracle data source (not yet available in Java).
  • Allow joining Athena datasources.

Bug Fixes

All Platforms

  • Pushing multiple menu items with menuItem action functions calls the last action function.
  • Donut chart doesn't show legend for <null> values but shows a section for them.
  • Export for Pdf is not taking the assigned Theme.
  • Unable to click text "X Selected"/"Show All" on a filter.
  • Cell background is not full wide on filters for text "X Selected"/"Show All".
  • Using custom theme font doesn't affect the KPI visualization.
  • "No providerid specified..." error in Oracle data source defined on javascript client.
  • The position of the search bar in the data selection view is not reset, in a certain scenario.
  • Search table on data source dialog causes error/crash after scrolling tables.
  • DefaultRefreshRate of 0 prevents image/pdf web resource from loading.
  • Number formatting is not applied in Sparkline.
  • Tooltip for gauge does not display number formatting.
  • The "NUMERIC" data type in BigQuery isn't properly supported and causes Error.
  • BigQuery is missing Quarter aggregation.
  • The "MOD" function in BigQuery does not allow you to use two different types of numeric data (e.g. float64 and int64).
  • 'Function does not exist' error in postgres when schema is not set in the datasourceItem.
  • Statistical functions are not displayed when viewing data as grid.
  • Export xlsx for charts visualization is not correct when changing them in reveal sdk.
  • Inconsistent checkbox state in when scrolling a large list of data sets in BigQuery add data source screen.
  • BigQuery DataSourceItem doesn't work if the project id is set only on the DS.
  • When data is obtained from an excel cell that has a custom format that includes any of the letters 'y', 'm', 'd' or 'h' it is always interpreted as date type.
  • Treemap does not respect number formatting.
  • Number formatting is not displayed in Financial chart tooltip.
  • Number formatting is not displayed in the tooltip of the Radial chart.
  • Athena and BigQuery don't show the 100k cell limit warning.
  • Math function Log stopped working for Athena.

ASP.NET

  • Export -both headless and interactive- doesn't work on linux.
  • Fix issue when Microsoft.Data.SqlClient >= 5.0.0 is used by a Asp.net project.
  • Verify Credentials error on Oracle data source.

Node

  • Request headers do not work for RVRESTDataSource when using the NodeSDK.

Java

  • Encoding issues in data read from BigQuery if the system's default charset is not UTF-8.
  • Getting null IRVUserContext in IRVDataSourceProvider.changeDataSourceItem in createwidget API.

1.5.0 (May 4th, 2023)

Breaking Changes

  • In some scenarios, the information set in IRVDataSourceProvider was visible to the client and also stored in the dashboard file. That was not a desirable behavior, but it also produced some hard to reproduce issues when editing dashboards. Starting on 1.5.0, the datasource information set in IRVDataSourceProvider does not leave the server. Depending on the specific implementation of IRVDataSourceProvider, this might have a big impact. To make sure your implementation is right, generally speaking, make sure that if you have a non-trivial implementation of ChangeDataSource, then you also implement ChangeDataSourceItem, and that this ChangeDataSourceItem invokes ChangeDataSource on the dataSourceItem.dataSource object. In addition, when working with CSV, Json, Excel files coming from datasources like S3, Rest, etc., please take into account that you might receive a call to ChangeDataSourceItem with the csv/json/excel datasource item, and in that case you must make sure that the dataSourceItem.resourceItem is properly 'changed', which also means invoking ChangeDataSource for dataSourceItem.resourceItem.dataSource.
  • IRVDataSourceProvider now requires the implementation of ChangeDataSourceAsync.
  • We're no longer releasing an installer for the asp.net SDK. To get started, check the documentation at https://help.revealbi.io/web/getting-started-server

Bug Fixes

All Platforms

  • Headless export: landscape is now the default orientation.
  • Fixes and performance improvements for the new category charts
  • Setting the Host property in MsSql provider in the IRVDataSourceProvider but not in the client causes error
  • Redshift queries fail if the Schema property is not set in the dataSourceItem (should use the default, 'public', schema)
  • Financial charts were not working properly
  • host property had always a value of null in IRVAuthenticationProvider for RVSqlServerDataSource.
  • All database datasources required the Database property to be set in the DataSourceItem (even if it was set in the DataSource). Now the property has been deprecated in the DataSourceItem, and setting it in the Database just works.
  • Opening a linked dashboard caused a crash
  • Treemap showing Redshift/Postgres data failed
  • Error using Standard Deviation aggregation with Redshift or Postgres
  • Setting a different Sheet for an Excel datasource using IRVDataSourceProvider didn't work
  • Error if clicking in blank space between the title and statistics icon while in Visualization Editor mode.
  • Cannot change the title of a new visualization (when it is initialized as a blank title)
  • If a JSON attribute name begins with a number the extracted value is always empty
  • Data Blending field panels don't scroll with mouse wheel or trackpad
  • Unable to move filter when there are 10+ of them in edit mode
  • Sybase ds item wrapper with configured custom query property still returns all data
  • Replacing Analysis Services data source doesn't work
  • Dynamics CRM - NRE is thrown when you try to get data using a data source item
  • An exception is thrown when no image is set in DashboardEmptyState
  • RVReportingServicesDataSourceItem seems to be missing properties for configuring parameters
  • It is not possible to render a pdf report using RVReportingServicesDataSourceItem
  • "No Url specified for web resource" error replacing DataSource WebResource URL
  • Calls to IRVDataSourceProvider.ChangeDataSourceItemAsync always has null for dashboardId argument
  • KPI Indicators - "There's no data to display" has wrong style
  • Some global filters are being reset when start selecting their options
  • Null Reference Exception thrown when using a specific Excel sheet with custom styles.
  • MySQL timestamp columns are read as UTC datetimes when they're actually in the session timezone.
  • The nuget files contains more dependencies than it should
  • Very bad performance on Redshift blending when using a RVRedshiftDataSourceItem
  • Error when using InMemory datasource in SDK
  • Error in Salesforce visualization when using Lead's ConvertedDate as a filter
  • S3 Excel resource item not working after replace DS/DSI scenario (app kept in loading after sheet selection when creating widget)
  • The Rest API URL should not be shown in errors
  • Change RVDashboard.visualizations type in d.ts to VisualizationsArray

Node

  • Several improvements on headless export for the Node.js SDK. Now it is available for Linux/MacOS.

Java

  • 'Schema' property for the Snowflake DataSource was being ignored.
  • Asset visualization not working when using the java SDK.
  • Redshift queries for tables using column of type 'timestamptz' failed if it contained null values.
  • MaxDownloadSize limit is being ignored in Java SDK

1.4.0 (Feb-2023)

Breaking Changes

  • Category Charts have a new look & feel. The old L&F is deprecated but if needed for whatever reason, they're can be restored by doing revealSdkSettings.enableNewCharts = false.
  • Subtitles for Data Source Items are no longer autogenerated. Only the Subtitle property is considered.

New Features

All Platforms

  • New API onFieldsInitializing that makes it possible to customize the list of fields shown in the visualization editor, by removing, renaming or reordering fields. Usage example:
revealView.onFieldsInitializing = function (args) {
args.fields = args.fields.filter(f => !["Avg.CPC", "Avg. CPC"].some(e => e == f.name));
};
  • BigQuery, Snowflake and Athena now support the CustomQuery property
  • Snowflake - Allow setting Warehouse property from sdk

Node

  • (Beta) Headless Export for node.js SDK. Currently, it only works on the Windows platform.
  • RVHeadersDataSourceCredentials now available for Node.js SDK.

Bug Fixes

All Platforms

  • When trying to join a third dataset the app freezes
  • Using a RVDashboardDataSource causes a crash when the Id property is not set (Web only)
  • Inconsistent time part for dates sent in the range parameter of onDateFilterChanged
  • Inconsistent day shown in the global filter range selector, when using 'Today' or 'Yesterday' two different days were displayed.
  • Data blending editor doesn't show the field used for joining when that field comes from a previous data blending.
  • The Athena DataSourceItem errors out unless you specify the Database property on the Client (Web only)
  • RVSnowflakeDataSourceItem Does Not Work

ASP.NET

  • Headless export fails if DocumentExportOptions is used.

Java

  • "Fail to retrieve row count for first arrow chunk" error in Snowflake (Java only)

1.3.1 (Jan-2023)

BREAKING CHANGES

ASP.NET

  • The Reveal.Sdk.Web.AspNetCore.Trial nuget package has been deprecated and is no longer updated.
  • The new Reveal.Sdk.AspNetCore nuget package is now available on nuget.org, and will work as both a Trial and Licensed version. To unlock the Trial, set the license key in the SDK.
  • The license key is now set in the initialization parameters of the Reveal SDK (previously, this was done in the installer). Here's how to set it:
services
.AddMvc()
.AddReveal(builder =>
{
builder
.AddSettings(settings =>
{
settings.License = "XYZ123";
});
});

Node

  • Renamed RVUserNamePasswordDataSourceCredential to RVUsernamePasswordDataSourceCredential. Changed the uppercase "N" to lowercase "n".

Bug Fixes

All Platforms

  • Several improvements to headless export:
    • Improved API.
    • Visualization using Maps now show correctly.
    • Decreased memory footprint when running.
    • Fixed issue where a missing title in the dashboard would make the export fail.
  • Fixed issue: when creating a REST datasource using parameters. If the back button was pressed, values were already populated but they were not really applied.
  • Fixed issue: Dashboard filter list of available values was always refreshed when opening a dashboard, no matter what expiration setting was set.
  • Fixed issue: Dashboard filter expiration value was not saved.
  • Fixed issue: Dashboard horizontal filter lost when maximizing and then restoring.
  • Fixed issue: the kebab menu in the dashboard view was not reachable using the keyboard (tab).
  • Fixed issue: Dashboard linking stops working after selecting a dashboard filter in the linked visualization.
  • Fixed issue: Wrong value shown for Scatter Map mouseover tooltip.
  • Fixed issue: Cancelling the MenuOpening event didn't really cancel.
  • Fixed issue: In ChangeDataSourceItemAsync method, the userContext parameter was coming with null value.

Java

  • Fixed issue: "Login failed due to client TLS version..." error when connecting to mssql in Azure.
  • Fixed issue: Could not add Google Analytics 4 interactively.

1.3.0 (Nov-2022)

New Features

  • Export dashboards from the backend:
var pdfStream = await dashboardExporter.ExportToPdf(dashboardId);
  • New Data Source: Google Analytics 4.
  • Interactive Dashboard Filtering: Filter all visualizations using the same data source by clicking on a chart or pivot table data point. Enable with: revealView.interactiveFilteringEnabled = true.
  • Methods containing a callback now include an additional signature allowing for promise method handling:
$.ig.RevealUtility.loadDashboard(dashboardId).then(dashboard => {
revealView.dashboard = dashboard;
});

If using async/await:

let dashboard = await $.ig.RevealUtility.loadDashboard(dashboardId);
revealView.dashboard = dashboard;
  • Manually loading of default fonts using the ensureFontsLoadedAsync method from $.ig.revealSdkSettings is no longer required.
  • New function 'DateDiff' for calculated fields.

Bug Fixes

All Platforms

  • Fix error when filtering boolean values in Postgres & Redshift ("operator does not exist")
  • Fix localization not working when the locale contains an hyphen
  • Fix for IRVDataSourceProvider.ChangeDataSourceItem not invoked when creating a new visualization from a REST data source.
  • Removed new http header 'XRID' that was accidentally added in v1.2.3 and was causing issues with CORS.

Java

  • sdk-ext: updated commons-text library.
  • Fix for very slow response times when processing some Excel files.