Skip to content
Snippets Groups Projects
Unverified Commit 0ec8fe6a authored by Jeff Bruemmer's avatar Jeff Bruemmer Committed by GitHub
Browse files

docs - update subscription chart caveat (#27590)

parent a14b50f6
No related branches found
No related tags found
No related merge requests found
docs/dashboards/images/example-email.png

154 KiB

......@@ -39,12 +39,6 @@ For emails, we can:
If you've added filters to your dashboard and set default values for those filters, Metabase will apply those default values to your subscriptions, filtering the results of all questions that are connected to those filters when the subscriptions are sent. To learn more, check out [dashboard filters](./filters.md).
## Email example
![Example dashboard subscription email](./images/example-email.png)
You'll notice in the email that Metabase excludes any text cards on the dashboard, and that the charts look different - Metabase reformats the charts to make them more legible in email. Additionally, tables that exceed either 10 columns or 20 rows get the rest of their results, up to 2000 rows, included as an attachment.
## Slack subscription options
For Slack subscriptions, you can set up a subscription for a channel (like #general), or for a single person via their Slack username.
......
import React from "react";
import { t } from "ttag";
import MetabaseSettings from "metabase/lib/settings";
import Text from "metabase/components/type/Text";
import ExternalLink from "metabase/core/components/ExternalLink";
function CaveatMessage() {
return (
<Text className="mx4 my2 p2 bg-light text-dark rounded">
<span className="text-bold">{t`Note`}:&nbsp;</span>
{t`charts in your subscription won't look the same as in your dashboard.`}
&nbsp;
<ExternalLink
className="link"
target="_blank"
href={MetabaseSettings.docsUrl("dashboards/subscriptions")}
>
{t`Learn more`}
</ExternalLink>
.
{t`Charts in subscriptions may look slightly different from charts in dashboards.`}
</Text>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment