Visualization-related updates

Liking the timeline viewer. Is there an ability to add a legend of the event types

1 Like

Thanks, Ed. We’ve added a legend for the ‘Color By’ column, its visibility can be adjusted via ‘Legend Visibility’ property (the auto mode displays the legend when the number of categories doesn’t exceed 100). We are currently testing this and other improvements (version 0.1.0). I’ll write back once it’s available in your environment. The legend functions mostly as in the standard viewers (you can filter by clicking on a category label, etc.)

1 Like

Map viewer

Map viewer shows geospatial data on a map as either markers or a heatmap. It displays data in geographic formats, like GEOJSON, TOPOJSON, KML, and KMZ. You can also add a map viewer to your custom table. When so, it automatically detects columns with longitude and latitude values.

To configure a map, click the Gear icon on top of the viewer and use the info panels on the Context Pane. For example, you can:

  • Color-code points using the Color property.
  • Size-code points using the Size property.
  • Control point size by setting the Marker Min Size and Marker Max Size properties.

To enable a heatmap, use one of the options:

  • On the Layers Menu, turn on the heatmap layer visibility.
  • On the Context Pane, set the Render Type property to heatmap.

A map viewer responds to data filtering and selection. The selected points on a map form a separate layer so you can process them separately. For example, you can export them to a new table, as well as any other layer’s data. To do that, use the corresponding icon on the Layers Menu.

Controls:

Action Control
Zoom in Mouse Wheel Up or Plus
Zoom out Mouse Wheel Down or Minus
Add a point to selection Shift+Click the point
Select multiple points Ctrl+Mouse Drag
1 Like

Added Spline and Fill Spline options that control whether the histogram is rendered as a bar or as a spline (it’s always rendered as spline when the Split column is set), and whether the area is filled or not.

image

2 Likes

More options for histograms in the multi-distribution mode: ability to show markers, and a choice whether or not distributions should be normalized (you compare distributions when “normalize” is on, or absolute values, otherwise).

image

1 Like

New help property introduced for all core viewers. It could be either a markdown, or a URL.

image

1 Like

Text rendering has been significantly improved by introducing smart line wrapping (first by new lines, then by words, then by characters).

grid-text-wrap

1 Like

This is very useful, thanks!

We now render hyperlinks by interpreting any string that starts with http/https as a URL. A tooltip displaying the platform’s response to clicks accompanies these hyperlinks.

URL-renderer

Additionally, we’ve introduced various link-click behaviors, allowing users to choose between “Open in new tab,” “Open in context panel,” or a “Custom” option by defining the “.linkClickBehavior” column tag accordingly. To implement custom behavior, subscribe to the link-click event using the following code:
grok.events.onLinkClicked.subscribe(eventData => grok.shell.info(eventData.args.link));

2 Likes

New options for Histogram to help analyse smaller parts of histogram:
Zoom To Range: show only bins that have values in the set range
Normalize to range: scales values to the biggest visible bin
Bin to Range: bin the data filtered by RangeSlider and not the whole column.

2 Likes