The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum for Programming
 Forum for Python
 Update Sparklines

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
Fabi K Posted - 04/27/2022 : 09:15:42 AM
Hi everyone,

is there a way to update sparklines for existing data with embedded Python? I added them by using the header_rows function. But than there is only the blank row and no sparklines.

Thanks
Fabi
2   L A T E S T    R E P L I E S    (Newest First)
Fabi K Posted - 04/28/2022 : 04:47:52 AM
Thanks! That will do for now:)
cpyang Posted - 04/27/2022 : 5:44:03 PM
Sparklines from GUI is controlled by the "sparklines" X-Function, so you have to invoke LabTalk for that

wks=op.find_sheet()
col = wks._col_index('B')
col += 1#convert to LabTalk 1-offset
wks.lt_exec(f'sparklines sel:=0 c1:={col} c2:={col}')



You can find usage of an X-Function by typing into Script Window
sparklines -h

CP

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000