Jump to content

Holger Schimanski

Members
  • Posts

    9
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Holger Schimanski's Achievements

Apprentice

Apprentice (3/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post
  • Conversation Starter

Recent Badges

0

Reputation

  1. Issue is fixed. Spotfire mods works fine in iOS. Thanks for fixing the issue in EU site.
  2. Great, this helps to get the e.g. County, Sales Type, Product. With this I can create a proper tooltip e.g. Country: US Sales Type: B2B Product: Car How about the County values in their natural order (independent from their order in the Rows)
  3. For the categorical axis in Spotfire Mods I would like to know the Data fieldsit consist of. For a row I can retrieve the values of the categorical axis e.g. US >> B2B >> Car. I would like to know the data fields it is build from e.g. Country, Sales Type, Product. And also all a list of all possible values of this data field e.g. US, UK, DE, FI in their natural resp. default order. I don't know how to get such information from DataView or other Mods API.
  4. For my Spotfire mod I need to calculate some partial sums of some of the rows. (I am creating a stacked bar chart and need to sum the segments to calculate the overall height.) For the calculation I can simply use therow.continuous("Y").value() and the calculate my partial sum. But now I want to render the partial sum and the value formatting should followthe same user-defined formatting asrow.continuous("Y").formattedValue(). Is there a possibility though the JavaScript API to get access to the value formatter of the respective continuous axis Best regards Holger
  5. As inspiration how it is done elsewhere like in Atlassian Jira or Confluence addons https://developer.atlassian.com/server/framework/atlassian-sdk/internationalising-your-plugin/ or https://developer.atlassian.com/cloud/jira/platform/internationalization-for-connect-apps/ You provide properties files where you have keys and the translated text for each language e.g. com.example.plugin.fruit.apple = Apple and com.example.plugin.fruit.apple = Apfel in two different files. In the manifest file you can reference and use these keys. Instead of label: "Apple" you would use label_key: "com.example.plugin.fruit.apple". And you need a way to get the label keys translated in HTML and JavaScript code via a JavaScript call. Very useful would be, if a mod could reuse already existing translations from core Spotfire. Then the mod developer don't has to worry about how to translate common words and phrases like "Sort ascending" etc.
  6. I have created a Spotfire mods for a special type of bar chartwith some simple SVG drawings, not using any chart library, just vanilla JavaScript and HTML resp. SVG code https://github.com/hski-github/spotfire-scrollable-bar-chart.I published the dashboard and mod on Spotfire Cloud, and it works petty well via Chrome browser. But when connecting from iOS Spotfire app to TIBCO cloud and opening the dashboard, the respecive mod visualisation was only visible for 1-2 seconds and then replaced by an error message, that cockies needs to be enabled. I have attached two screenshots. Sorry, the error message is in German. Can you have a look at this Best regards Holger
  7. I am working on a Sankey resp. Alluvial diagramhttps://github.com/hski-github/spotfire-sankey-diagramusing TIBCO Spotfire Mods. Because of the nature of this type of diagram only Count and Sum makes sense as aggregation methods for the continuous axis. Is there a way to limit this in the mods manifest file, so that Average etc. are not possible to select Or is there a way to check the calculation method from JavaScript API Best regards Holger
  8. I would like to add support for multiple languages. For example "Color by" is automatically translated to "Farben nach" in German. What is the concept for multilanguage i18n support in Spotfire mods If I look at the mod-manifest.json I don't find options to provide i18n labels. Beside mod-manifest.json we likely will need i18n labels in our JavaScript code for the user interface. And in all of that I would like to reuse existing phrases and translations used already in Spotfire like the example above of "Color by" to avoid, that I need to translate labels of user interface components in my Spotfire mod. Any ideas Best regards, Holger
  9. I like to add ascrollbar to my Spotfire mods. If I use CSS style="overflow-y: auto;" on the or , this works butthe layout of the scrollbar is the browser default and different from the standard Spotfire look and feel of the scroll bar. See attached screenshot with Chrome on Windows 10. Any idea how to get Spotfire scroll bar for my Best regards, Holger
×
×
  • Create New...