• Vidya Sagar Malla Professional BI Consultant

Blog

Tibco Spotfire Custom/ Fancy Filter Panel

8
Jul,2018

0

Hello Everyone, This article will help you create out of the box functionality within the Text area of the Spotfire. With the power of HTML, CSS, and jQuery I have achieved the custom filter panel. Within this filter panel, you…

Write-back into database functionality using Tibco Spotfire Analyst

12
Jun,2018

23

I see many Tibco Spotfire Developers are excited and confused about writeback database functionality using Spotfire Analyst / Spotfire WebPlayer. So this post is for all of them. Scenario: I would like to create a user registration form in Spotfire and…

Power BI DAX

14
May,2018

0

DAX(Data Analysis Expressions) Calculation Types: Inside the expression always call the table name in front of the column name Table name has to be in single quotes and Column names has to be in Square brackets. Example: ‘Table Name'[Column Name] New…

Linked In Post about Spotfire videos

22
Feb,2018

0

Heard of BI Tools? No Joking, I know most of you knew there are so many BI Tools are available in the market. Some of them are free for learning and some for the trail. I really appreciate TIBCO Spotfire…

Changing the XAxis Column names in Barchart using Iron Python

18
Apr,2017

0

Create Drop Down Property control as Axis Trigger the below script to chnage X aixs values in the selecting dropdown control. from Spotfire.Dxp.Application.Visuals import * viz = myviz.As[BarChart]() if propvalue == ‘AEDECOD’: viz.XAxis.Expression = ‘<${Axis} as [Term]>’ elif propvalue ==…

Reset Spotfire BarChart Data limit and Axis Value Reset

3
Jun,2016

0

from Spotfire.Dxp.Application.Visuals import AxisRange from Spotfire.Dxp.Application.Visuals import VisualContent vc=vis.As[VisualContent]() vc.Data.WhereClauseExpression=”[Amounts]<>0  and ([Days]< Max([Days]))” vc.XAxis.ZoomRange = AxisRange.DefaultRange; vc.YAxis.ZoomRange = AxisRange.(0,200);   Note: vis is a parameter which needs to be assigned with Chart

Hide Spotfire data table column using python script

3
Jun,2016

0

from Spotfire.Dxp.Application.Visuals import CrossTablePlot crossTable = ct.As[CrossTablePlot]() crossTable.RowHeaderWidths[0]=0 crossTable.RowHeaderWidths[1]=0

Creating D3 Visualizations with in Spotfire

9
May,2016

7

I have made a video tutorial of this D3 Visualization within Spotfire Client. Please look into the following link for the video Also please find the attached CSS & JavaScritps which I used in this tutorial from the below link.

Loading Json Web API Open Source Data into Spotfire Client

22
Apr,2016

3

Do You want to perform analysis on open source yahoo financial data which can be accessed by JSON ? So how do you achieve this? So let’s get started. We can achieve this by either using Iron Phyton Script ….