staticdash 2025.25__tar.gz → 2025.26__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: staticdash
3
- Version: 2025.25
3
+ Version: 2025.26
4
4
  Summary: A lightweight static HTML dashboard generator with Plotly and pandas support.
5
5
  Author-email: Brian Day <brian.day1@gmail.com>
6
6
  License: CC0-1.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "staticdash"
7
- version = "2025.25"
7
+ version = "2025.26"
8
8
  description = "A lightweight static HTML dashboard generator with Plotly and pandas support."
9
9
  authors = [
10
10
  { name = "Brian Day", email = "brian.day1@gmail.com" }
@@ -582,9 +582,9 @@ class Dashboard:
582
582
  fig = content
583
583
  buf = io.BytesIO()
584
584
  if hasattr(fig, "savefig"):
585
- fig.savefig(buf, format="png", bbox_inches="tight", dpi=300)
585
+ fig.savefig(buf, format="png", bbox_inches="tight", dpi=600)
586
586
  else:
587
- fig.write_image(buf, format="png", width=600, height=360, scale=2)
587
+ fig.write_image(buf, format="png", width=800, height=600, scale=3)
588
588
  buf.seek(0)
589
589
  story.append(Image(buf, width=6 * inch, height=4.5 * inch))
590
590
  story.append(Spacer(1, 12))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: staticdash
3
- Version: 2025.25
3
+ Version: 2025.26
4
4
  Summary: A lightweight static HTML dashboard generator with Plotly and pandas support.
5
5
  Author-email: Brian Day <brian.day1@gmail.com>
6
6
  License: CC0-1.0
File without changes
File without changes