Senseforce 2.0 Manual
  • Welcome to Senseforce 2.0
  • SF MQTT API
  • SF Edge
    • Edge Package Overview
    • Edge Installation
      • Using the SF Edge Service installer in command shell
      • Headless SF Edge Servie execution
    • Edge Configuration
      • Which Plugins to load (appsettings.xml)
      • Edge Data Routing (EventDefinition.xml)
      • OTA configuration (otasettings.xml)
      • Edge Logging
      • Input plugins
        • SQL Plugin
        • SQLite Plugin
        • OPC UA Plugin
          • OPC UA server browser
        • SIEMENS S7/SINUMERIK Plugin
          • Creating connection definition file
        • S7 Plugin
        • REST Plugin
        • TCP Listener Plugin
        • XML File Parsing Plugin
        • Heidenhain Plugin
      • Output Plugins
        • MQTT Plugin
        • SQLite Plugin
    • Edge Compute plugins
      • Creating compute plugins
      • Using compute plugins
  • SF Edge Asset Management
    • Edge version repository
  • SF Platform
    • Navigation
      • Overview Screen
    • Dataset Builder
      • Filters, Aggregations and Groupings
      • Functions of the Formula Editor
      • Additional Settings
      • Special Events
      • FAQ and Troubleshooting
    • Script Editor
      • Details of the Script Editor
      • Installed Packages
      • Working with Timestamps
        • Working with Timestamps in Python
        • Working with Timestamps in R
      • FAQ and Troubleshooting
    • Widgets
      • Text
      • Headline
      • Image
      • Progress Bar & Gauge Chart
      • Table
      • Map
      • Line, Bar, Scatter and Area Chart
      • Pie Chart
      • Gantt Chart
      • Histogram
      • Overview
      • Log
      • Default colors and color conditions
      • FAQ and Troubleshooting
    • Dashboards
      • Dashboard Filters
      • Favorites
      • Data Drilldown & Widget Interaction
      • Editing multiple dashboard widgets
      • Time Zones
      • Synchronized Zooming
      • Sharable Dashboard URL
      • Multi-chart layout options
      • Default sort for table widgets
      • Releases
      • Reporting
      • FAQ and Troubleshooting
      • Applying zoom to global timestamp filter
      • Optimise the layout for different devices
    • Machine Master Data
      • Dimensions
      • Instances
      • Things
      • Use Case
      • FAQ and Troubleshooting
    • Automation
      • Trigger
      • Scheduling overview
      • Actions
      • Test your Automation
      • Zapier integration (necessary internal steps)
      • Zapier integration
      • Subscriptions
      • FAQ and Troubleshooting
    • Event Schema Management
      • Importing a Event Schema
      • FAQ and Troubleshooting
    • Virtual Events
      • Creating a Virtual Event
      • Scheduling Overview
      • Permissions and Data Access
      • FAQ and Troubleshooting
    • Details modal for elements
    • Copy / Duplicate elements
    • Whitelabeling
    • Edge Device Management
    • Element History
    • Public API
      • Get your access token
      • Endpoints
      • Debugging scripts
      • FAQ and Troubleshooting
    • User & Group Management
      • FAQ and Troubleshooting
    • Active Directory & SSO Setup
Powered by GitBook
On this page
  • A column from the dataset is not available for selection in the drop-down!
  • What exactly is the data source limit applied to?
  • Given Tick Interval (vertical axis, custom option in multi-chart) is not used?
  • Can I use emojis in a widget?

Was this helpful?

  1. SF Platform
  2. Widgets

FAQ and Troubleshooting

PreviousDefault colors and color conditionsNextDashboards

Last updated 3 years ago

Was this helpful?

A column from the dataset is not available for selection in the drop-down!

The columns which are available in a drop-down depend on the data type of the column. E.g. a column of type string will not be available in the drop-down for the y-values of a multi-chart.

What exactly is the data source limit applied to?

The data source limit is limiting the entries which are loaded into the widget. Not the entries which are used in your script for your dataset. So if the limit is 1000 and a data source has more than 1000 rows then the widget will only display the first 1000 rows. Note that if there are NULL values within these rows even less than 1000 values will be displayed.

Given Tick Interval (vertical axis, custom option in multi-chart) is not used?

If the tick interval is not exactly as you set it this might be due to the minimum setting which depends on the minimum and maximum value displayed in the chart.

Can I use emojis in a widget?

In headers and status text of table widgets

Just copy the emoji (e.g. from ) into the text field for the header or status text.

Single text or table widget

Yes, you can, but only with an R script and not via a function column or a python script. You can simply use the in a string variable of your script.

# to display the winking face emoji (unicode: U+1F609) use
output <- "\U1F609"

You can also combine emojis with text.

here
unicode