Skip to main content

Visualization Area Sizes


Discovered this gem this afternoon,
Spotifre out of the box does a great job at resizing visualization area based on screen size. helps you maximize the screen real estate,

But while you are developing you may want to build a best layout for a certain size (like ipads, or corporate desktop size or those megascreens etc).

If you go to Edit >> Document Properties you can select Visual Area Size from a few presets or specify a custom size

But just realized you can add your own custom sizes in teh list of drop downs,

This can be done in preference manager,

If you are administrator you can set options for everyone to use

You can store a specific size in the preferences to have it show up like any other presets in the Visualization area size drop-down list of the Document Properties dialog.

  1. Select Tools > Administration Manager.
  2. Go to the Preferences tab.
  3. In the Selected group list, click on the group for which to set the preferences.
  4. In the Preferences list to the right, click on the plus sign next to Application to expand the group.
  5. Click on ApplicationPreferences.
  6. Click Edit.
  7. Click Fixed Visualization Area Sizes.
    Response: A small button is displayed to the right of the preference.
  8. Click on the button.
    Response: The String Collector Editor is displayed.
  9. Enter the desired fixed size configurations and click OK.
 Fixed Visualization Area Sizes
 Lets you specify which fixed sizes (in pixels) that should be available in the Visualization area size drop-down list in Document Properties besides Fit to Window and Custom Size…. Enter each size on a new line and use this format:

iPad Portrait (560x834)

iPad Landscape (816x575)

Desktop 1024 x 768 (814x610)

Desktop 1600 x 1200 (1390x1030)

Desktop Portrait 1050 x 1680 (840x1550)

Very Large Screen ({0} x {1}) (4000x3000)

The size is specified in the parenthesis, and the text before the parenthesis is the text that will be displayed in the drop-down list.

The last example shows how you can use variables if you want the sizes specified in the parenthesis to be displayed in the drop-down list as well. By default, iPad Portrait and iPad Landscape are available in the list. Note that these are removed from the list as soon as you add a size in the list



Comments

  1. So do you have to duplicate efforts (create a 2nd dashboard) to optimize it for multi screen?
    What I like about this feature is that you can create multiple "pages" to scroll down. The only issue I have with it is that you can't have a custom visualization area by tab - that would have been awesome

    ReplyDelete
  2. Any way to toggle this via script? I constantly switch back from fit to window and a custom size that prints perfect on 11X17 pdf.

    ReplyDelete
  3. This comment has been removed by the author.

    ReplyDelete

Post a Comment

Popular posts from this blog

Calendar Chart in Spotfire

I recently had a colleague asking me to show him the data in a calendar format.. Something like this I basically used a scatterplot for this.  You can check out the original DXP here  http://bit.ly/spotcalendar Some key settings to make it a calendar. Please note Order date is the date of interest here These expressions are out of the box expressions, no need to handcode them, but select them in the axis value  X Axis    <BinByDateTime([Order Date],"DayOfWeek",0)> Y Axis    Week([Order Date]) Trellis into panels   <BinByDateTime([Order Date],"Year.Quarter.Month",2)> Manual layout 4 X 3 Labels  UniqueConcatenate(DayOfMonth([Order Date])) Shape Tiled Markers Marker by   <UniqueConcatenate([Order Date])> Happy plotting your calendar!!!

Using Accordions in Spotfire Text Areas

Spotfire 6.0 provides great tools for quickly building your dashboard, but here we will learn to spice up things with the help of new 6.0 text area. If you are not aware the new 6.0 Text area supports HTML, Javascript and CSS. This opens up possibilities for doing a lot more with the text area. Some of the basic stuff can be seen here http://spotfire.tibco.com/qrt/UBSAN/presentation.html?pcode=100044   One of the cool things you can do is build an accordion panel in the text area for better utilization of the valuable screen real estate and helping the overall experience.(Watch the 0:15 second video below to see how accordion works - Sorry for the jitter in the video. The screen recorder does not record fast enough) Here is the html behind the text area : Please note that Spotfire controls are automatically created when you add text area controls, like filters, drop down lists etc. <DIV id="myaccordion"> <H3>Analysis Details</...

Spotfire Writing back to a database

Lot of time users need to write back to a database. Spotfire provides different ways to do this, Without going thru the code I am going to talk thru the different options available. But if you need detailed instructions, please leave some comments and will try to provide one 1) Stored Procedures. Advantages : Complex logic is easy to encapuslate in procedures. Also you are not storing username/passwords anywhere  Spotfire can execute stored procedures and these procedures could be fetching data, or can be procedures that can be run Pre or Post running a query. You can then use procedures that basically update your database table or even inserts new rows in tables. When using Spotfire information model it allows you to use these procedures which you can repurpose for updating your database. Spotfire also understands inputs to a procedure and they can be mapped to your marked rows/filtered rows/ properties/constants etc from your analytics. Steps to do that would be ...