Plotly Express Template Color Demonstration

Scatter

Without Template

scatter without template

With Template

scatter with template
template.data.scatter = [
    go.Scatter(marker=dict(color="purple")),
    go.Scatter(marker=dict(color="lime")),
    go.Scatter(marker=dict(color="magenta")),
]

Line

Without Template

line without template

With Template

line with template
template.data.scatter = [
    go.Scatter(marker=dict(color="purple")),
    go.Scatter(marker=dict(color="lime")),
    go.Scatter(marker=dict(color="magenta")),
]

Area

Without Template

area without template

With Template

area with template
template.data.scatter = [
    go.Scatter(marker=dict(color="purple")),
    go.Scatter(marker=dict(color="lime")),
    go.Scatter(marker=dict(color="magenta")),
]

Bar

Without Template

bar without template

With Template

bar with template
template.data.bar = [
    go.Bar(marker=dict(color="purple")),
    go.Bar(marker=dict(color="lime")),
    go.Bar(marker=dict(color="magenta")),
]

Timeline

Without Template

timeline without template

With Template

timeline with template
template.data.bar = [
    go.Bar(marker=dict(color="purple")),
    go.Bar(marker=dict(color="lime")),
    go.Bar(marker=dict(color="magenta")),
]

Histogram

Without Template

histogram without template

With Template

histogram with template
template.data.histogram = [
    go.Histogram(marker=dict(color="purple")),
    go.Histogram(marker=dict(color="lime")),
    go.Histogram(marker=dict(color="magenta")),
]

Ecdf

Without Template

ecdf without template

With Template

ecdf with template
template.data.scatter = [
    go.Scatter(marker=dict(color="purple")),
    go.Scatter(marker=dict(color="lime")),
    go.Scatter(marker=dict(color="magenta")),
]

Violin

Without Template

violin without template

With Template

violin with template
template.data.violin = [
    go.Violin(marker=dict(color="purple")),
    go.Violin(marker=dict(color="lime")),
    go.Violin(marker=dict(color="magenta")),
]

Box

Without Template

box without template

With Template

box with template
template.data.box = [
    go.Box(marker=dict(color="purple")),
    go.Box(marker=dict(color="lime")),
    go.Box(marker=dict(color="magenta")),
]

Strip

Without Template

strip without template

With Template

strip with template
template.data.box = [
    go.Box(marker=dict(color="purple")),
    go.Box(marker=dict(color="lime")),
    go.Box(marker=dict(color="magenta")),
]

Scatter 3D

Without Template

scatter_3d without template

With Template

scatter_3d with template
template.data.scatter3d = [
    go.Scatter3d(marker=dict(color="purple")),
    go.Scatter3d(marker=dict(color="lime")),
    go.Scatter3d(marker=dict(color="magenta")),
]

Line 3D

Without Template

line_3d without template

With Template

line_3d with template
template.data.scatter3d = [
    go.Scatter3d(marker=dict(color="purple")),
    go.Scatter3d(marker=dict(color="lime")),
    go.Scatter3d(marker=dict(color="magenta")),
]

Scatter Ternary

Without Template

scatter_ternary without template

With Template

scatter_ternary with template
template.data.scatterternary = [
    go.Scatterternary(marker=dict(color="purple")),
    go.Scatterternary(marker=dict(color="lime")),
    go.Scatterternary(marker=dict(color="magenta")),
]

Line Ternary

Without Template

line_ternary without template

With Template

line_ternary with template
template.data.scatterternary = [
    go.Scatterternary(marker=dict(color="purple")),
    go.Scatterternary(marker=dict(color="lime")),
    go.Scatterternary(marker=dict(color="magenta")),
]

Scatter Polar

Without Template

scatter_polar without template

With Template

scatter_polar with template
template.data.scatterpolar = [
    go.Scatterpolar(marker=dict(color="purple")),
    go.Scatterpolar(marker=dict(color="lime")),
    go.Scatterpolar(marker=dict(color="magenta")),
]

Line Polar

Without Template

line_polar without template

With Template

line_polar with template
template.data.scatterpolar = [
    go.Scatterpolar(marker=dict(color="purple")),
    go.Scatterpolar(marker=dict(color="lime")),
    go.Scatterpolar(marker=dict(color="magenta")),
]

Bar Polar

Without Template

bar_polar without template

With Template

bar_polar with template
template.data.barpolar = [
    go.Barpolar(marker=dict(color="purple")),
    go.Barpolar(marker=dict(color="lime")),
    go.Barpolar(marker=dict(color="magenta")),
]

Scatter Matrix

Without Template

scatter_matrix without template

With Template

scatter_matrix with template
template.data.splom = [
    go.Splom(marker=dict(color="purple")),
    go.Splom(marker=dict(color="lime")),
    go.Splom(marker=dict(color="magenta")),
]

Funnel

Without Template

funnel without template

With Template

funnel with template
template.data.funnel = [
    go.Funnel(marker=dict(color="purple")),
    go.Funnel(marker=dict(color="lime")),
    go.Funnel(marker=dict(color="magenta")),
]