
Artem Yevtushenko
Sisense BI Consultant
- Total activity 292
- Last activity
- Member since
- Following 2 users
- Followed by 6 users
- Votes 98
- Subscriptions 128
Activity overview
Latest activity by Artem Yevtushenko-
Artem Yevtushenko created a post,
Filter for last working day
When a filter based on this custom column is active, the dashboard will reference the last working day. If the dashboard is checked on Monday or Sunday, Friday's data will be shown.If the dashboard...
-
Artem Yevtushenko commented,
Hi John, With additional scripting, this is definitely possible, but you run into the issue of having too many widgets on your dashboard. I recommend using BloX Jump to Dashboard buttons to switch ...
-
Artem Yevtushenko created a post,
Center y axes 0 of a Cartesian chart
Apply this widget script: widget.on('beforeviewloaded', (se, ev) => { let min = Math.abs(ev.options.yAxis[0].min); let max = Math.abs(ev.options.yAxis[0].max); max > min ? ev.options.yAxis[0]...
-
Artem Yevtushenko created a post,
Sort Both Axes in Scatter Chart
By Oleksii Demianyk Widget Script: var xOrder = 'asc' //also, this value can be descvar yOrder = 'asc'widget.on('beforeviewloaded', function(scope, args) { var shouldBeExecuted = (order === 'des...
-
Artem Yevtushenko commented,
Hi Toby, If you'd like to ignore certain widgets you can use the following syntax: This is the original method to create the card effect. $('.dashboard-layout-subcell-host').css('padding', '10'); I...
-
Artem Yevtushenko created a post,
Percent Complete Circle and Indicator
This article is based on Sergio Pedercini’s Medium post How to code a responsive circular percentage chart with SVG and CSS. This is a purely HTML, SVG, and CSS widget requiring no Javascript. The...
-
Artem Yevtushenko created a post,
Widget Script: Stream Data Into a Widget with Sub-Second Refresh
Challenge The utility of a sub-second refresh rate is limited to monitoring use-cases. This, of course, is not BI, but there may be cases where a BI use-case also incorporates live streaming data t...
-
Artem Yevtushenko created an article,
Querying the Sisense Elasticube with Python
This article will cover two methods you can use to connect Python to the Elasticube. Method 1: Using ODBCMethod 2: Using the REST API Method 1: Connect to the EC with ODBC Download Sisense ODBC...
-
Artem Yevtushenko created a post,
Conditionally Hide Widgets
The example below uses a "peer group" use case, where a company which facilitates customer peer benchmarking, does not want users to compare themselves to fewer than 10 companies. The first widget,...
-
Artem Yevtushenko created a post,
Passing User Information in BloX Post Action
Objective Send the user information along with data in a BloX Post payload without additional data security or dimension transformation. Method This method uses the following BloX components: A wi...