diff --git a/docs/README.md b/docs/README.md index c168ce9a606254f92afc5c4f0f236bd1f4c95414..8102e4a264983773ab2bc6fb83a0d030af99bfb6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -96,6 +96,7 @@ title: Metabase documentation - [Public links for dashboards and questions](./administration-guide/12-public-links.md) - [Embedding Metabase in other applications](./administration-guide/13-embedding.md) +- [Customizing the appearance of embedded items](./enterprise-guide/customize-embeds.md) - [Embedding the entire Metabase app in your own web app](./enterprise-guide/full-app-embedding.md) - [Embedding example apps](https://github.com/metabase/embedding-reference-apps) - [White labeling charts (branding)](./enterprise-guide/whitelabeling.md) diff --git a/docs/administration-guide/13-embedding.md b/docs/administration-guide/13-embedding.md index 2bcaa34f949790f74a9b106cdca69f8ad959ef17..eef696bf85a46142494110c010b9655ee2ba49f5 100644 --- a/docs/administration-guide/13-embedding.md +++ b/docs/administration-guide/13-embedding.md @@ -59,14 +59,14 @@ You'll see a preview of the question or dashboard as it will appear in your appl  -## Publishing your embedded dashboard +## Publishing your embedded item -In order for the embedding to work, you'll need to hit **Publish**. You'll need to hit the **Publish** button whenever you: +In order for the embedding to work, you'll need to hit **Publish**. You'll need to hit the **Publish** button whenever: - You first set up a chart or dashboard for embedding - *and* each time you change any embedding settings. - Also, any changes you make to the resource may require you to update the code in your own application so that it matches the latest code sample Metabase generates. + Also, any changes you make to the embedding settings may require you to update the code in your own application so that it matches the latest code sample Metabase generates.  @@ -137,9 +137,9 @@ Dashboards are a fixed aspect ratio, so if you'd like to ensure they're automati To change the look and feel of the embed, you can add additional parameters to the embedding URL: -- **bordered**: true or false. Adds a visible border to the embed. -- **titled**: true or false. Adds or removes the title to the embedding. -- **theme**: light, transparent, or night. Shows the embedded iframe in light (theme is null), transparent (no background), or night (dark mode). +- **Bordered**: true or false. Adds a visible border to the embed. +- **Titled**: true or false. Adds or removes the title to the embedding. +- **Theme**: light, transparent, or night. Shows the embedded iframe in light (theme is null), transparent (no background), or night (dark mode). For example: @@ -149,30 +149,14 @@ http://yourmetabaseurl.com/embed/dashboard/a_very_huge_hashed_url#theme=night&hi These settings can also be changed under **Style** when previewing the embedded question or dashboard and its code in Metabase. -## Advanced embedding features - -{% plans-blockquote feature="Advanced embedding features" %} - -Paid plans give you additional customization options for embedded items. - -### Remove the "Powered by Metabase" banner - - - -Charts and dashboards won't show the branded Metabase label at the bottom. - -### Set custom fonts - -You can set the font for the embedded chart or dashboard. See [available fonts](./fonts.md). - -### Disable data download - -You can remove the export icon from charts. Note that removing the icon here doesn't totally prevent people from exporting the data; treat it as a deterrent, not a security option. Removing the icon just cleans up the embedded chart a bit, and makes downloading the data a bit of a hassle. - ## Embedding reference applications To see code examples of how to embed Metabase in applications using a number of common frameworks, check out our [reference implementations](https://github.com/metabase/embedding-reference-apps) on Github. +## Customizing embeds + +Paid plans include additional features for [customizing the appearance](../enterprise-guide/customize-embeds.md) of embedded items. + ## Further reading - [Embedding track](/learn/embedding) in Learn Metabase. \ No newline at end of file diff --git a/docs/administration-guide/fonts.md b/docs/administration-guide/fonts.md deleted file mode 100644 index 16bb4d2ef92201b44fff1ec2a7c7e2c36cf05d3a..0000000000000000000000000000000000000000 --- a/docs/administration-guide/fonts.md +++ /dev/null @@ -1,35 +0,0 @@ -# Fonts - -{% plans-blockquote feature="Customizable font" %} - -On paid plans, you can customize the font Metabase uses. You can choose from a curated set of Google Fonts that accommodate the regular and bold font weights that Metabase relies on for its various UI elements. - -You can set fonts for: - -- [Your entire Metabase](../enterprise-guide/whitelabeling.md) -- [Embedded charts and dashboards](./13-embedding.md) - -## Available fonts - -- [Lato](https://fonts.google.com/specimen/Lato) -- [Lora](https://fonts.google.com/specimen/Lora) -- [Merriweather](https://fonts.google.com/specimen/Merriweather) -- [Montserrat](https://fonts.google.com/specimen/Montserrat) -- [Noto Sans](https://fonts.google.com/specimen/Noto+Sans) -- [Open Sans](https://fonts.google.com/specimen/Open+Sans) -- [Oswald](https://fonts.google.com/specimen/Oswald) -- [Playfair Display](https://fonts.google.com/specimen/Playfair+Display) -- [Poppins](https://fonts.google.com/specimen/Poppins) -- [PT Sans](https://fonts.google.com/specimen/PT+Sans) -- [PT Serif](https://fonts.google.com/specimen/PT+Serif) -- [Raleway](https://fonts.google.com/specimen/Raleway) -- [Roboto](https://fonts.google.com/specimen/Roboto) -- [Roboto Condensed](https://fonts.google.com/specimen/Roboto+Condensed) -- [Roboto Mono](https://fonts.google.com/specimen/Roboto+Mono) -- [Roboto Slab](https://fonts.google.com/specimen/Roboto+Slab) -- [Slabo 27px](https://fonts.google.com/specimen/Slabo+27px) -- [Source Sans Pro](https://fonts.google.com/specimen/Source+Sans+Pro) -- [Ubuntu](https://fonts.google.com/specimen/Ubuntu) - -Comic Sans is currently not supported. - diff --git a/docs/administration-guide/start.md b/docs/administration-guide/start.md index a2e3c60ac1a7d045ecd7af706b431c6746e98b87..856a3b88eabd56cf21ced246823d973740aed0c0 100644 --- a/docs/administration-guide/start.md +++ b/docs/administration-guide/start.md @@ -48,3 +48,4 @@ See [how to install Metabase](../operations-guide/installing-metabase.md). - [Sharing dashboards and questions with public links](12-public-links.md) - [Embedding Metabase in other Applications](13-embedding.md) +- [Customizing embeds](../enterprise-guide/customize-embeds.md) diff --git a/docs/enterprise-guide/customize-embeds.md b/docs/enterprise-guide/customize-embeds.md new file mode 100644 index 0000000000000000000000000000000000000000..b73a750cde3b08ec8a19f5cfea262e3c5a911985 --- /dev/null +++ b/docs/enterprise-guide/customize-embeds.md @@ -0,0 +1,45 @@ +--- +title: Customizing embedded charts +--- + +# Customizing embedded charts + +{% include plans-blockquote.html feature="Advanced embedding features" %} + +Some paid plans give you additional customization options for [embedded items](../administration-guide//13-embedding.md). + +## Remove the "Powered by Metabase" banner + + + +Charts and dashboards won't show the branded Metabase label at the bottom. + +## Setting fonts for embedded items + +You can set the font for the embedded chart or dashboard. You can select from a list of [included fonts](./fonts.md). + +If you've set a custom font for your Metabase, that font will be selectable as "Use instance font". + +### Use instance font + +If you select "Use instance font", the font for your embedded item will sync with whatever you've set your [Metabase font](./fonts.md) to. So if you change the font for your Metabase (your "instance"), the font used for the embedded item will change as well. There's no need to update the embedding code; the embedded item's font should update automatically (though you may need to refresh your browser). + +If you want to use a font different from your current instance font, you can select one of the [included fonts](./fonts.md). You cannot have multiple custom fonts. + +### Changing custom fonts + +If you want to use a different custom font, and by custom here we mean a font other than one of the included fonts, you'll need to change the [custom font](./fonts.md#custom-fonts) for your Metabase instance. Changing the instance font will update all embedded items that have their font set to "Use instance font". + +For now, you cannot have multiple custom fonts; you can only override your instance font with one of the included fonts. + +## Disable data download + +You can remove the export icon from charts. Note that removing the icon here doesn't totally prevent people from exporting the data; treat it as a deterrent, not a security option. Removing the icon just cleans up the embedded chart a bit, and makes downloading the data a bit of a hassle. + +## Further reading + +- [Embedding Metabase in other applications](../administration-guide/13-embedding.md) +- [White labeling Metabase](./whitelabeling.md) +- [Fonts](./fonts.md) +- [Learn embedding](https://www.metabase.com/learn/embedding) + diff --git a/docs/enterprise-guide/fonts.md b/docs/enterprise-guide/fonts.md new file mode 100644 index 0000000000000000000000000000000000000000..534d1e70703c1f8316ee11cf8932902617d698b5 --- /dev/null +++ b/docs/enterprise-guide/fonts.md @@ -0,0 +1,114 @@ +--- +title: Fonts +--- + +# Fonts + +{% include plans-blockquote.html feature="Customizable font" %} + +On paid plans, you can customize the font Metabase uses (the default is [Lato](https://fonts.google.com/specimen/Lato)). You can choose from a curated set of Google Fonts that accommodate the regular, bold, and heavy font weights that Metabase relies on for its various UI elements. + +You can set fonts for: + +- [Your entire Metabase](./whitelabeling.md) +- [Individual embedded charts and dashboards](./customize-embeds.md#setting-fonts-for-embedded-items) + +## Included fonts + +To change your Metabase font, click on the **gear** icon in the upper right of the screen and select **Admin settings** > **Settings** > **Appearance**. Under **Font**, select from a list of included fonts. + +- [Custom font](#custom-fonts) +- [Lato](https://fonts.google.com/specimen/Lato) +- [Lora](https://fonts.google.com/specimen/Lora) +- [Merriweather](https://fonts.google.com/specimen/Merriweather) +- [Montserrat](https://fonts.google.com/specimen/Montserrat) +- [Noto Sans](https://fonts.google.com/specimen/Noto+Sans) +- [Open Sans](https://fonts.google.com/specimen/Open+Sans) +- [Oswald](https://fonts.google.com/specimen/Oswald) +- [Playfair Display](https://fonts.google.com/specimen/Playfair+Display) +- [Poppins](https://fonts.google.com/specimen/Poppins) +- [PT Sans](https://fonts.google.com/specimen/PT+Sans) +- [PT Serif](https://fonts.google.com/specimen/PT+Serif) +- [Raleway](https://fonts.google.com/specimen/Raleway) +- [Roboto](https://fonts.google.com/specimen/Roboto) +- [Roboto Condensed](https://fonts.google.com/specimen/Roboto+Condensed) +- [Roboto Mono](https://fonts.google.com/specimen/Roboto+Mono) +- [Roboto Slab](https://fonts.google.com/specimen/Roboto+Slab) +- [Slabo 27px](https://fonts.google.com/specimen/Slabo+27px) +- [Source Sans Pro](https://fonts.google.com/specimen/Source+Sans+Pro) +- [Ubuntu](https://fonts.google.com/specimen/Ubuntu) + +Comic Sans is currently not included. + +## Custom fonts + +To set a custom font, click on the **gear** icon in the upper right of the screen and select **Admin settings** > **Settings** > **Appearance**. + +For **Font**, select **Custom...** and enter URLs to your font files. + +## Font style options + +You can set three different font styles with three different URLs, one for each font style (size and weight) that Metabase will use in order to display its user interface properly. The font weights are: + +- Regular 400 +- Bold 700 +- Heavy 900 (sometimes called Black 900) + +You only need to set the first style (Regular 400); the browser will fill in the other styles. + +For best results, set at least the 400 and 700 styles. If you have a single font file that contains multiple font styles within the same family, enter the URL in multiple fields to tell Metabase to prefer the weights in that font file. Metabase will use those styles to override the font styles set by the browser. + +### Supported font file formats + +For custom fonts, Metabase supports woff, woff2, ttf files. If the URL you provide lacks a specific file extension, Metabase will assume it's a woff2 file. + +## Google Font URLs + +To get a URL for a [Google Font](https://fonts.google.com/), visit the Google Font page and select the style you want to use. Then make an HTTP request to get the URL of the tff file. For example, say we want to use Roboto Mono: here's how we could get the font file URLs for both the 400 and 700 styles: + +We'd paste the URL [https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap](https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap) into our browser's address bar. This URL will return a response like: + +``` +* cyrillic-ext */ +@font-face { + font-family: 'Roboto Mono'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(https://fonts.gstatic.com/s/robotomono/v21/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0me8iUI0lkQ.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Roboto Mono'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(https://fonts.gstatic.com/s/robotomono/v21/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0me8iUI0lkQ.woff2) format('woff2'); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +... +``` + +For latin text, we'd copy the relevant src URLs for each style, in this case: + +- For 400: [https://fonts.gstatic.com/s/robotomono/v21/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0me8iUI0.woff2](https://fonts.gstatic.com/s/robotomono/v21/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0me8iUI0.woff2) +- For 700: [https://fonts.gstatic.com/s/robotomono/v21/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0me8iUI0.woff2](https://fonts.gstatic.com/s/robotomono/v21/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0me8iUI0.woff2) + + +And paste those URLS in the relevant input fields in **Admin settings** > **Settings** > **Appearance** > **Font** section where it says "Tell us where to find the file for each font weight. You don’t need to include all of them, but it’ll look better if you do." + +## Supporting multiple languages + +To support multiple character sets, for example both Latin and Cyrillic, you'll need to merge font files. + +## Customizing the font for individual embedded items + +In addition to the [included fonts](#included-fonts), if you set a custom font for your Metabase, that font will be selectable as the "Use instance font" in menus. See [Customize embeds](./customize-embeds.md). + +## Further reading + +- [White labeling Metabase](./whitelabeling.md) + + + diff --git a/docs/enterprise-guide/images/appearance/chart-colors.png b/docs/enterprise-guide/images/appearance/chart-colors.png new file mode 100644 index 0000000000000000000000000000000000000000..40993decbc43a0e2e3b095692c2c0b2d8155cda1 Binary files /dev/null and b/docs/enterprise-guide/images/appearance/chart-colors.png differ diff --git a/docs/enterprise-guide/images/appearance/metabot.png b/docs/enterprise-guide/images/appearance/metabot.png new file mode 100644 index 0000000000000000000000000000000000000000..624e27c0c016daac7c32de374f73b672b0456ae8 Binary files /dev/null and b/docs/enterprise-guide/images/appearance/metabot.png differ diff --git a/docs/enterprise-guide/images/appearance/user-interface-colors.png b/docs/enterprise-guide/images/appearance/user-interface-colors.png new file mode 100644 index 0000000000000000000000000000000000000000..852159e47310cff84d70d3903b4bdbb0a81948f4 Binary files /dev/null and b/docs/enterprise-guide/images/appearance/user-interface-colors.png differ diff --git a/docs/enterprise-guide/start.md b/docs/enterprise-guide/start.md index ffc12024daf4f5521f21156361b6c15d8bc36535..86391a1cfcdaacae516af5b43955e25c9cfdfc2d 100644 --- a/docs/enterprise-guide/start.md +++ b/docs/enterprise-guide/start.md @@ -37,6 +37,7 @@ You can embed all of Metabase in your app. - [Embedding the entire Metabase app in your app](full-app-embedding.html) - [Customizing how Metabase looks with white labeling](whitelabeling.html) +- [Customizing embedded items](./customize-embeds.md) ## Dashboard subscription customization diff --git a/docs/enterprise-guide/whitelabeling.md b/docs/enterprise-guide/whitelabeling.md index f5008e6d4f4d96c98132545c731c6079adf18cf4..76945b1e1a4762ad1ba3805987a27630a9ec8f79 100644 --- a/docs/enterprise-guide/whitelabeling.md +++ b/docs/enterprise-guide/whitelabeling.md @@ -1,34 +1,73 @@ --- title: White labeling Metabase +redirect_from: + - /docs/latest/administration-guide/whitelabeling --- # White labeling Metabase {% include plans-blockquote.html feature="White labeling" %} -White labeling lets you customize the way Metabase looks so that it matches your company’s branding. Go to the Admin Panel and click on the White Labeling section to start customizing things. Here’s what you can do: +White labeling lets you customize Metabase's appearance so that it matches your company’s branding. -## Change the name of the application +## Changing Metabase's appearance + +Click on the gear icon at the bottom of the navigation sidebar and select **Admin settings** > **Settings** > **Appearance**. Here’s what you can do: + +## Application name You can change every place in the app that says “Metabase†to something like “Acme Analytics,†or whatever you want to call your Metabase app. -## Logo +## Font + +This is the primary font used in charts and throughout the Metabase application (your "instance font"). See [Fonts](../enterprise-guide/fonts.md). + +## Color palette + +You can customize colors in both the application UI and in the Metabase charts. -You can replace Metabase’s familiar, tasteful, inspired-yet-not-threateningly-avant-garde dotted M logo with your very own. For things to work best, the logo you upload should be an SVG file that looks good when it’s around 60px tall. (In other words, ask the nearest designer for help.) +### User interface colors -## Change the color palette + You can customize the colors that Metabase uses throughout the app: -- **Primary color:** by default, this is the lovely blue that is used for the nav bar, links, buttons, and more. -- **Nav bar color:** you can optionally specify a separate color for the nav bar; otherwise it defaults to the Primary color. -- **Accent colors:** these are the colors that are used for some icons, secondary buttons, elements of the graphical query builder, and chart colors. -- **Additional chart colors:** as the name implies, these are additional colors that are included in the charting options to give your lines, bars, and pie slices some extra pizazz. +- **First color:** The main color used throughout the app for buttons, links, and the default chart color. +- **Second color:** The color of aggregations and breakouts in the graphical query builder. +- **Third color:** Color of filters in the query builder, buttons and links in filter widgets. -To learn more, check out this article on [branding your Metabase instance](https://www.metabase.com/blog/white-label/index.html). +### Chart colors ---- + + +You can choose up to 24 hex values. If you choose fewer than 24 colors, Metabase will auto-generate colors to fill in the rest of the values. + +## Logo + +You can replace Metabase’s familiar, tasteful, inspired-yet-not-threateningly-avant-garde dotted M logo with your very own logo. For things to work best, the logo you upload should be an SVG file that looks good when it’s around 60px tall. (In other words, ask the nearest designer for help.) + +## Favicon + +The URL or image that you want to use as the favicon. Note that if you use a relative path, that path isn't relative to the Metabase JAR, but to the webserver. So unless you're using a reverse-proxy, the path will be relative to the frontend resources available to the JAR. + +## Landing page + +The landing page is what people will see whenever they login. You can set the URL to a collection, question, dashboard or whatever, just make sure that everyone has access to that URL. + +## Loading message + +This message is the text Metabase presents when it's loading a query. Options include: + +- "Doing science..." (the default) +- "Running query..." +- "Loading results..." + +## Metabot + + + +You can decide whether to display our little friend on the home page. -## Next: Copying contents of one Metabase instance to another +## Further reading -Learn how to use [serialization](serialization.md) to create and load data dumps of the contents of a Metabase instance. +- [Brand your Metabase](https://www.metabase.com/blog/white-label/index.html). diff --git a/docs/operations-guide/environment-variables.md b/docs/operations-guide/environment-variables.md index bcdfc0cd4dca03e9a1bcc5122e98fa78acb8a5c6..6f889b4e1dcee7b32bce698a342a3f24179736c2 100644 --- a/docs/operations-guide/environment-variables.md +++ b/docs/operations-guide/environment-variables.md @@ -99,6 +99,31 @@ Default: `"frontend_client/favicon.ico"` Path or URL to favicon file. +### `MB_APPLICATION_FONT_FILES` + +Only available in [some plans](https://www.metabase.com/pricing)<br> +Type: string<br> +Default: `"{}"` + +Tell Metabase which font files to use for different styles. Example value: + +``` +[ + { + "src": "https://example.com/resources/font-400", + "fontFormat": "ttf", + "fontWeight": 400, + }, + { + "src": "https://example.com/resources/font-700", + "fontFormat": "woff", + "fontWeight": 700, + } +] +``` + +See [fonts](../enterprise-guide/fonts.md). + ### `MB_APPLICATION_LOGO_URL` Only available in [some plans](https://www.metabase.com/pricing)<br> @@ -608,7 +633,7 @@ Only available in [some plans](https://www.metabase.com/pricing)<br> Type: string<br> Default: `""` -Default page to show the user. +Default page to show people when they log in. ### `MB_LDAP_ATTRIBUTE_EMAIL` @@ -1059,4 +1084,4 @@ Base-64 encoded public key for this sites SSL certificate. Specify this to enabl Type: string<br> Default: `"http://static.metabase.com/version-info.json"` -The address used to check for newer versions of Metabase. \ No newline at end of file +The address used to check for newer versions of Metabase. diff --git a/docs/users-guide/01-what-is-metabase.md b/docs/users-guide/01-what-is-metabase.md index 71bafadc7d8f13d0a69ceb0f05e54278871e0339..2006fcf2eeb7325b52c2946208fa401b1d34379d 100644 --- a/docs/users-guide/01-what-is-metabase.md +++ b/docs/users-guide/01-what-is-metabase.md @@ -1,57 +1,4 @@ --- title: What is Metabase? ---- - -## What is Metabase? - -Metabase is an open source business intelligence tool. It lets you ask questions about your data, and displays answers in formats that make sense, whether that's a bar chart or a detailed table. - -Your questions can be saved for later, making it easy to come back to them, or you can group questions into great looking [dashboards](./07-dashboards.md). Metabase also makes it easy to share questions and dashboards with the rest of your team. - -## Finding your way around - -So, you've [gotten Metabase up and running](../operations-guide/start.md) and [connected it to your data](../administration-guide/01-managing-databases.md). It's time to give you the lay of the land. - -### The home page - - - -Fresh out of the box, Metabase will show you a few things on the home page: - -- A prompt to [connect your data to Metabase](../administration-guide/01-managing-databases.md) (if you haven't already). -- Some [automatic explorations](14-x-rays.md) of your tables that you can look at and save as a dashboard if you like any of them. (Administrators can permanently hide this section by clicking the **X** that appears on hover.) -- An area where things you or your teammates create will show up, along with a link to see all the dashboards, questions, and pulses you have. -- A list of the databases you've connected to Metabase. (As with X-rays, administrators can permanently hide this section by clicking the **X** that appears on hover. You can always click on **Browse Data** from the main nav bar to see your databases and tables.) - - - -Once you've created some [dashboards](07-dashboards.md), any of them that you pin in the main "Our analytics" collection will show up on the homepage for all of your teammates, so that when they log in to Metabase they'll know right where to go. - -### Browse your data - - - -If you connected your database to Metabase during setup, you'll see it listed at the bottom of the homepage along with the sample database that Metabase comes with. Click on a database to see its contents. You can click on a table to see its rows, or you can also click on the bolt icon to x-ray a table and see an automatic exploration of it, or click on the book icon to go to the data reference view for that table to learn more about it. - -### Explore your analytics - -As you and your team create dashboards and collections, they'll start to show up on the homepage. Click on a [collection](./collections.md) in the "Our analytics" section to see its contents, or click **Browse all items** to see everything you and your team have made. [More about exploring](03-basic-exploration.md) - -### Make something new - -Click the **+ New** button in the top-right of Metabase to create a new: - -- **Question** using Metabase's [graphical query builder](04-asking-questions.md). -- **SQL query** to ask a question using the [SQL editor](./writing-sql.md). -- **Dashboard** to create a [dashboard](./07-dashboards.md) to gather and arrange questions and text cards on a grid. You can add filters to dashboards, and share and embed them, and subscribe to them via email or Slack. See [Dashboards](./07-dashboards.md). -- **Collections** to create a new [collection](./collections.md) that organizes questions, dashboards, and models. - -To [create a new model](./models.md), ask a question using either the query builder or the SQL editor, then convert the results to a model. - -### Use search to quickly find things - -The search bar at the top of the screen helps you find tables, dashboards, collections, saved questions, metrics, segments, and pulses in an instant. - -## Next: Exploring Metabase - -Now that we've covered the basics of what Metabase is and can do, let's look at [dashboards and questions](03-basic-exploration.md) that your teammates have already made. \ No newline at end of file +redirect_to: https://www.metabase.com/learn/getting-started/tour-of-metabase +--- \ No newline at end of file diff --git a/src/metabase/public_settings.clj b/src/metabase/public_settings.clj index aaf432a40670351c5a4927390895e83bba10144f..b55a06a98009a854166dc5e7932aa17cbf4118e5 100644 --- a/src/metabase/public_settings.clj +++ b/src/metabase/public_settings.clj @@ -175,7 +175,7 @@ :visibility :public) (defsetting landing-page - (deferred-tru "Default page to show the user") + (deferred-tru "Default page to show people when they log in.") :visibility :public :type :string :default "")