Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Charts in Bots

Hi there! Can anyone give me clear answer: How I can prepare a chart in my own bot?

Votes Newest

Answers


There are a couple of options:

Embedded Image

Use a chart library to generate an image, then either attach it to your message or embed it inline using base64

Manual HTML + Styles

For simple bar charts with less data, construct them manually using divs and styling. You can also create pie charts using a conic-gradient background style. Here's a sample of some creative styling: https://codepen.io/Theystan/pen/xxZVaXd

Extension App

If you require interactive charts, you will have to build an extension app with a message render override that iframes to a web app that produces the chart. This can get really complicated since you will need to host a web app and it will not work on mobile.

  
  
Posted 2 years ago
Edited 2 years ago
Yong Sheng Tan
39 × 2 Administrator