Styles for Tooltip

Tooltips in Spotfire are great for showing insights on mouse over. We use them a lot for showing information which should appear only when we need. But what if you feel that their look and feel is not matching with you theme ? Question here is - How to add Style to tooltips ? πŸ€”πŸ€” Answer is, below...
Share:

Conditional Coloring of Spotfire Buttons

My friend was willing to color Spotfire Action buttons based on a value.  It is a small but effective way of representation. You will actually come to know what are your expectations even before clicking on a color coded button. Challenge here, This color should be picked automatically   Challenge Accepted...
Share:

Show/Hide Pages with a Button

A friend from Community asked for a Button to toggle visibility of a Spotfire page.   So, this post is about same πŸ˜ŽLets Start - Create a button in TextArea with id Hider. If you are suffering from HTML Sanitization, you can use my alternative code. This one re-purposes span as button πŸ˜œ<span...
Share:

Capturing Hierarchy Axis Changes to Document Property

My friend recently asked an Interesting Question - I have a chart where I am using a Hierarchy as Category Axis. I want to capture changes in that Axis (Hierarchy) to a Property Control. Is there a way to do this ? Sounds interesting  πŸ™ƒ Well , Let's start doing it ! Add a Input field property...
Share:

Adding some styles to Notifications

Default Notifications Dialog is boring! Agree? If yes, then this post is for you. Try Adding below code to a text area and then have a look at notifications again- <style id="AlienBox"> .sf-modal-dialog-content textarea {     color: azure;     background-color: brown; } .sfc-default-theme.sf-element-modal-dialog...
Share:

Interacting with Subsets with IronPython

What if you have to compare All Data with current Selections (Marking, Filtering etc.) ? What if you have to compare your two selections? I know answer will be - using (Subsets). But, What If you want to make this comparison on-Demand only ? My Answer is below IronPython code - from Spotfire.Dxp.Application.Visuals...
Share:

Adding Styles to Legend Area

Recently I have posted a few ways to style different Spotfire elements. Now I have one more, for Legends this time. This is what I have been able to achieve so far - Here is the code you need to Add to one of the HTML Text Area - <style id="AlienBox"> .StyledScrollbar.LegendScroll {  ...
Share:

Display Current User Information on Menu Bar

I recently posted about how to add Information to Menu Bar . I have been asked on LinkedIn - "How to display Current Logged in Username here ?" I will not say it is difficult, but involves a little more number of steps, because we have to use some extra steps to get current user details as well. So,...
Share: