Graph Card Type
This card type features a bar graph progress bar which can be used to indicate the total series progress. This "progress" is parsed from the episode text, which should be entered as a fraction - for example:
Will update the "progress" of the graph from 0% to 100% for all episodes in a season (e.g. the first episode is near 0%, the last episode 100%). This is the default behavior.
This card type is used whenever card_type
is specified as graph
.
Example
Valid extras
Below is a table of all valid series extras parsed by this card. These are described in greater detail below.
Label | Default Value | Description |
---|---|---|
graph_background_color |
rgba(140,140,140,0.5) |
Background color of the graph |
graph_color |
rgb(99,184,255) |
Color of the filled-in portion of the graph coloring |
graph_inset |
75 |
How far to inset the graph from the edges |
graph_radius |
175 |
Radius of the graph |
graph_text_font_size |
1.0 |
Size adjustment for the graph text |
graph_width |
25 |
The width of the graph |
fill_scale |
0.6 |
Scale for how wide the filled graph should appear |
omit_gradient |
false |
Whether to omit the gradient overlay |
percentage |
- | Manual fill percentage of the graph |
text_position |
lower left |
Where on the image to position the graph and text |
Customization
Graph
Background Color (graph_background_color
)
The background color of the graph can be adjusted with the
graph_background_color
extra. This color can transparency so that part of the
image behind the graph can be seen. This defaults to rgba(140,140,140,0.5)
(a neutral gray with 50% opacity).
Example
Fill Color (graph_color
)
The filled portion of the graph (as well as the color of the inside numerator
and denominator) can be adjusted with the graph_color
extra. This defaults to
rgb(99,184,255)
(which is a light blue).
This color is also used for the numerator (the top part of the fraction), and the line/denominator (the bottom part of the fraction) if the filled percentage is 100% (see the example below).
Fill Percentage (percentage
)
This card determines how "filled" to make the graph by parsing the episode text. This means that by default, the progress of the graph will be based on the episode number and how many episodes are in that season.
If you'd like to set the percentage to a fixed number (e.g. something that
does not change), then the percentage
extra can be specified. This must be
a number (intepreted as a percentage) between 0.0
and 1.0
.
This can be specified for the entire series, or per-episode in the data file.
Example
Fill Scale (fill_scale
)
How full relative to the background of the graph that the filled portion of the
graph appears can be adjusted with the fill_scale
extra. This defaults to
0.6
, meaning 60% of the width of the graph will be colored. This can be any
value between 0.0
(no fill at all) and 1.0
(completely filled).
Font Size (graph_text_font_size
)
Title Text Size
The font size of the title text is separately controlled with the normal
font
size
value.
The font size of the fractional text inside the graph can be adjusted with the
graph_text_font_size
extra. This is a scalar value greater than 0.0
, and
indicates how much to decrease or increase the size of the font from the
default.
Inset (graph_inset
)
How far from the edge of the image the shape is drawn can be adjusted with the
graph_inset
Extra. This affects the vertical and horizontal spacing of the
graph.
The default value is 75
, but can be any value between 0 and 1800. This
is a unit in pixels.
Radius (graph_radius
)
The radius of the graph can be adjusted with the graph_radius
. The default
value is 175
, but can be any value between 50
and
900
. This is a unit in pixels.
Note
Adjusting this value will also scale the size of the graph text unless the
graph_text_font_size
is manually set.
Width (graph_width
)
The width of the graph can be adjusted with the graph_width
extra. This
is different than the fill_scale
extra because this
affects how wide all parts of the graph appear, instead of just the filled-in
portions.
The default value is 25
. This can be any non-negative value.
Gradient Overlay (omit_gradient
)
By default, TCM adds a subtle gradient overlay on the outer edge of the image in
the orientation of the indicated text_position
.
This can be disabled by setting omit_gradient: true
.
Position (text_position
)
Where to position the graph and text can be controlled with the text_position
extra. This defaults to lower left
, but can be upper left
, upper right
,
left
, right
, lower left
or lower right
.
The position will also adjust the orientation of the gradient overlay, if not disabled.