✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount

SleekView Charts for UpStream

UpStream packs tasks, bugs, and milestones into serialized postmeta on each project. SleekView Charts unpacks those arrays at read time and aggregates them into client-portfolio dashboards.

♾️ Lifetime License available

SleekView Charts dashboard for UpStream

Unpack serialized postmeta into chartable dimensions

UpStream's data model is unusual: one 'project' custom post type holds everything, and tasks, bugs, milestones, and files live as serialized PHP arrays inside postmeta keys like _upstream_project_tasks and _upstream_project_bugs. The plugin keeps installation simple, but it makes 'count open bugs across every client' impossible with a standard WP_Query because bugs are not rows, they are array entries inside a blob.

SleekView Charts handles the unpack: at read time it deserialises each postmeta array, treats each entry as a row, joins the parent project post, and aggregates. Total open tasks across the agency, bugs by severity as a donut, project progress as a stacked bar, and milestone slip as a trend line are four chart cards that turn a per-project plugin into a portfolio dashboard.

Charts share the same unpacking logic as the SleekView task and bug tables, so a filter applied on the table (status equals open, client tag equals Acme) reshapes every chart on the dashboard. The plugin's frontend client view stays unchanged because charts are admin-side and read-only. The serialized model keeps its installation simplicity; the charts add the aggregations the model's choice prevents natively.

Workflow

From serialized postmeta to a portfolio dashboard

1

Read the project CPT

Point SleekView Charts at the UpStream project post type. The plugin's serialized postmeta keys (_upstream_project_tasks, _bugs, _milestones, _files) are detected automatically.
2

Unpack on read

Each serialized array becomes one row per entry at query time. Tasks fan out into a flat task source, bugs into a bug source, milestones into a milestone source, all with the parent project joined.
3

Pick portfolio KPIs

Total open tasks as a Number, bugs by severity as a donut, project progress as a stacked bar. Three cards already replace the per-project click pattern PMs do today.
4

Trend milestone health

Milestone slip in days as a line chart catches deadline drift before client status calls. Pin the dashboard per agency owner for one-glance portfolio health.

Sample dashboard

Charts you can build from UpStream data

An agency portfolio dashboard built on the UpStream project post type, with serialized task and bug arrays unpacked into chartable rows.
Number · Default

Open tasks across all clients

Top-line count of every task not yet complete across every project. The number agency owners check before every weekly portfolio review.
Count
Pie · Donut

Bugs by severity

Distribution across critical, high, medium, low. The donut shape surfaces whether QA load is manageable or whether triage needs to escalate now.
Count group by severity
Bar · Horizontal

Progress by project

Average task progress per project, surfaced as a ranked horizontal bar. Slow projects float to the bottom; clients near launch float to the top.
Average(progress) group by project
Area · Gradient

Tasks completed per week

Portfolio velocity trend across every client. Spikes line up with launch weeks; troughs flag projects that need a check-in.
Count group by completed_at

Comparison

Default UpStream reporting vs SleekView Charts

Default UpStream

  • Tasks and bugs in serialized postmeta, no aggregate charts
  • Per-project progress visible only inside the project page
  • Bug severity distribution requires manual counting
  • Cross-client velocity trends are not surfaced
  • Milestone slip across projects has no chart

SleekView Charts

  • Open tasks across the portfolio as a Number KPI
  • Bug-severity donut for triage health
  • Progress bar per project for launch readiness
  • Velocity area chart of tasks completed per week
  • Milestone-slip line chart for deadline drift

Features

What SleekView Charts gives you for UpStream

Portfolio health donut

Open tasks by status across every client in one shape. The portfolio answers 'are we shipping' before any drill-down into individual projects.

Project ranking

Average progress per project as a horizontal bar. Launch-ready clients float to the top; slow projects float to the bottom, surfaced before the weekly status call.

Velocity and slip

Tasks completed per week as an area chart plus milestone slip as a line. Agency velocity and deadline drift become numbers, not hunches.

Audience

Who builds UpStream charts dashboards with SleekView

Agency owners

One dashboard with open-tasks count, bug-severity donut, and per-project progress bar. Portfolio health takes a screenshot instead of an hour of clicking.

Project managers

Status donuts per client and velocity trends per project. Client status calls open with the dashboard, not with a spreadsheet pivot.

QA leads

A bug-severity donut and a bugs-per-week area chart across every project. Triage capacity gets a real signal, not a project-by-project scan.

The bigger picture

Serialized data only helps if it can be aggregated

UpStream's serialized postmeta model keeps installation simple, but the cost shows up the moment an agency wants to ask portfolio questions. The database has no idea those tasks are tasks: they are opaque blobs to SQL, which means counting open bugs across every project or charting velocity per client is impossible without unpacking each project's blob. The plugin compensates with per-project pages, which scale to single-project teams and break for agencies.

The default workaround is per-project CSV exports merged in spreadsheets, which is fine for monthly reports and useless for daily portfolio reviews. SleekView Charts unpacks the serialized arrays at read time, treats each entry as a row, joins the parent project, and aggregates. A donut of bugs by severity across every client is a chart, not a SQL exercise.

A bar of average progress per project ranks launch readiness in one glance. A line of milestone slip catches deadline drift before client calls. The plugin's frontend client view stays unchanged because charts are admin-side and read-only.

The serialized model keeps its simplicity; the charts add the aggregation surface that portfolio work requires.

Questions

Common questions about SleekView Charts for UpStream

SleekView Charts deserialises each _upstream_project_tasks, _bugs, _milestones, and _files array at read time and treats each entry as a row. Aggregations group across those unpacked rows, joining back to the parent project post for context. The unpack happens in PHP, so it respects whatever shape UpStream actually wrote, including custom-field add-ons.

 

Yes. Severity is a field on each bug entry inside _upstream_project_bugs. After unpacking, severity becomes a chartable dimension. A donut, a bar, or a stacked chart by project all work without custom code.

 

Yes. Each milestone entry carries a planned date and, if recorded, an actual completion date. The difference becomes a slip metric, chartable as a line over time or a bar per project. Useful for catching deadline drift before client status calls.

 

Yes. Charts are admin-side and read-only against the project postmeta. UpStream's frontend client view renders unchanged; Client User role permissions still apply. The two layers do not overlap and do not conflict.

 

Yes. Each project post carries a client (often a custom taxonomy or a meta field). Charts can group or filter by client, so a per-client dashboard for status calls is a saved view. Custom Fields add-on values stored inside the serialized arrays are also chartable.

 

Yes. Frontend Edit writes back through the same serialized arrays SleekView reads. Edits made via Frontend Edit show up in the dashboard on the next refresh. The two coexist as alternative write paths into the same data.

 

Yes for typical agency sizes. Each project's serialized array is deserialised once per refresh and cached per dashboard. Cache-duration controls keep repeated loads cheap. For very large portfolios (hundreds of projects with hundreds of tasks each), tighter caches and scoped filters keep response times reasonable.

 

Yes. Charts and Tables share the same unpacking logic. Clicking a chart segment scopes the SleekView task or bug table to that cohort, so a spike on the bug donut turns into a sortable list in one click, with the parent project joined for context.

 

Pricing

More than 1000+
happy customers

Explore our flexible licensing options tailored to your needs. Upgrade your license anytime to access more features, or opt for a lifetime license for ongoing value, including lifetime updates and lifetime support. Our hassle-free upgrade process ensures that our platform can grow with you, starting from whichever plan you choose.

Starter

€79

EUR

per year

  • 3 websites
  • 1 year of updates
  • 1 year of support

Pro

€149

EUR

per year

  • Unlimited websites
  • 1 year of updates
  • 1 year of support

Lifetime ♾️

Most popular

€249

EUR

once

  • Unlimited websites
  • Lifetime updates
  • Lifetime support

...or get the Bundle Deal
and save €250 🎁

The Bundle (unlimited sites)

Pay once, own it forever

Elevate your WordPress site with our exclusive plugin bundle that includes all of our premium plugins in one package. Enjoy lifetime updates and lifetime support. Save significantly compared to buying plugins individually.

What’s included

  • SleekAI

  • SleekByte

  • SleekMotion

  • SleekPixel

  • SleekRank

  • SleekView