Description Usage Arguments Value Examples
Getter and Setter methods can be used to directly manipulate properties (slots) of an i2dashboard object. See i2dashboard for details.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | interactivity(dashboard)
interactivity(dashboard) <- value
title(dashboard)
title(dashboard) <- value
author(dashboard)
author(dashboard) <- value
theme(dashboard)
theme(dashboard) <- value
datadir(dashboard)
datadir(dashboard) <- value
share(dashboard)
share(dashboard) <- value
embed_source(dashboard) <- value
source(dashboard)
source(dashboard) <- value
## S4 method for signature 'i2dashboard'
interactivity(dashboard)
## S4 replacement method for signature 'i2dashboard'
interactivity(dashboard) <- value
## S4 method for signature 'i2dashboard'
title(dashboard)
## S4 replacement method for signature 'i2dashboard'
title(dashboard) <- value
## S4 method for signature 'i2dashboard'
author(dashboard)
## S4 replacement method for signature 'i2dashboard'
author(dashboard) <- value
## S4 method for signature 'i2dashboard'
theme(dashboard)
## S4 replacement method for signature 'i2dashboard'
theme(dashboard) <- value
## S4 method for signature 'i2dashboard'
datadir(dashboard)
## S4 replacement method for signature 'i2dashboard'
datadir(dashboard) <- value
## S4 method for signature 'i2dashboard'
share(dashboard)
## S4 replacement method for signature 'i2dashboard'
share(dashboard) <- value
## S4 method for signature 'i2dashboard'
source(dashboard)
## S4 replacement method for signature 'i2dashboard'
source(dashboard) <- value
## S4 replacement method for signature 'i2dashboard'
embed_source(dashboard) <- value
|
dashboard |
A i2dashboard. |
value |
The value of the desired property. See i2dashboard for details. |
The Getter methods return the value of the respective slot of the i2dashboard object. The Setter methods return the i2dashboard object containing the modified slot.
1 2 3 4 5 6 7 8 9 10 | dashboard <- i2dashboard()
title(dashboard) <- "New dashboard title"
author(dashboard) <- "John Doe"
theme(dashboard) <- "cosmo"
datadir(dashboard) <- "path/to/workdir/"
interactivity(dashboard) <- TRUE
share(dashboard) <- "menu"
embed_source(dashboard) <- TRUE
source(dashboard) <- "www.url_to_souce_code.net"
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.