This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-08-21
Channels
- # announcements (1)
- # babashka (39)
- # beginners (91)
- # cider (9)
- # clj-kondo (10)
- # cljsrn (1)
- # clojure (54)
- # clojure-europe (45)
- # clojure-italy (2)
- # clojure-nl (1)
- # clojure-spec (39)
- # clojure-uk (21)
- # clojurescript (7)
- # core-typed (1)
- # cursive (9)
- # data-science (1)
- # datomic (2)
- # docker (3)
- # emacs (11)
- # figwheel-main (11)
- # fulcro (19)
- # java (1)
- # juxt (1)
- # kaocha (68)
- # malli (7)
- # meander (5)
- # off-topic (76)
- # pedestal (1)
- # re-frame (6)
- # reveal (1)
- # rum (2)
- # shadow-cljs (48)
- # sql (6)
- # tools-deps (47)
- # vim (8)
- # xtdb (23)
does anyone use charts in their apps?
are they non trivial by any chance? 😄
i've been using https://github.com/wuxudong/react-native-charts-wrapper
and it's ok but limited in what i want to do
What i tried to achieve
I have line chart and display data but when i move up and down i want specific element that's over it (absolute position) to move as well.
The problem
Charts only have 1 callback on-change
which triggers A LOT of events and that absolute positioned element is blinking all over the place
so i am wondering
how hard would it be to implement your own line chart using cljs?
has anyone done this for web even?
I might be able to solve the data points and 'grid' but i cant figure out how to draw lines that connect data points?
Any ideas?
also if anyone has idea how to solve the problem with wrapper lib i'd be happy to hear it
thank you for your time