cancel
Showing results for 
Search instead for 
Did you mean: 

Accepted Solutions (0)

Answers (4)

Answers (4)

Jay_Gandhi
Active Contributor

Hi Arvind,

In a standard story, no this is not possible.

Jay

FxGk
Participant
0 Kudos

Hey Arvind,

two years later I found a solution for your problem.
Check this out: News Ticker/ Text Crawler – R widget for SAC | SAP Blogs

kind regards

Felix

avsalynin
Active Contributor
0 Kudos

asharma2002

also, you can do smth like "rolling text" in Analytics Designer with the help of technical component Timer + script code

arvshar2
Explorer
0 Kudos

Thanks Aleksey, looking this in Story.

ashutosh_rastogi
Active Contributor
0 Kudos

You can use R visualization in SAC to achieve that.

-Ashutosh

arvshar2
Explorer
0 Kudos

Thanks Ashutosh,

Do you have some script for this...

Regards

Arvind

ashutosh_rastogi
Active Contributor

Following can used for plotting text. You might have to play around with some animation library to make this rolling text. I don't have script to achieve that.

library(gplots)
library(stringr)

r <- format(BestRunJuice_SampleModel$`Net Revenue`, digits=5, nsmall=2, big.mark=",", justify = "right")
textplot(str_c("Total Revenue is ", r), halign="left", valign="top")

-Ashutosh