<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Charts on Producthunt daily</title>
        <link>https://producthunt.programnotes.cn/en/tags/charts/</link>
        <description>Recent content in Charts on Producthunt daily</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en</language>
        <lastBuildDate>Fri, 31 Oct 2025 15:27:26 +0800</lastBuildDate><atom:link href="https://producthunt.programnotes.cn/en/tags/charts/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>helm</title>
        <link>https://producthunt.programnotes.cn/en/p/helm/</link>
        <pubDate>Fri, 31 Oct 2025 15:27:26 +0800</pubDate>
        
        <guid>https://producthunt.programnotes.cn/en/p/helm/</guid>
        <description>&lt;img src="https://images.unsplash.com/photo-1542758554-f3aab709b0da?ixid=M3w0NjAwMjJ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NjE4OTU2MzZ8&amp;ixlib=rb-4.1.0" alt="Featured image of post helm" /&gt;&lt;h1 id=&#34;helmhelm&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/helm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;helm/helm&lt;/a&gt;
&lt;/h1&gt;&lt;h1 id=&#34;helm&#34;&gt;Helm
&lt;/h1&gt;&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/helm/actions?workflow=release&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://github.com/helm/helm/workflows/release/badge.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Build Status&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://goreportcard.com/report/helm.sh/helm/v4&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://goreportcard.com/badge/helm.sh/helm/v4&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Go Report Card&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://pkg.go.dev/helm.sh/helm/v4&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/static/v1?label=godoc&amp;amp;message=reference&amp;amp;color=blue&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;GoDoc&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://bestpractices.coreinfrastructure.org/projects/3131&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://bestpractices.coreinfrastructure.org/projects/3131/badge&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;CII Best Practices&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://scorecard.dev/viewer/?uri=github.com/helm/helm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://api.scorecard.dev/projects/github.com/helm/helm/badge&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;OpenSSF Scorecard&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://insights.linuxfoundation.org/project/helm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://insights.production.lfx.dev/api/badge/health-score?project=helm&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;LFX Health Score&#34;
	
	
&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Helm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources.&lt;/p&gt;
&lt;p&gt;Use Helm to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Find and use &lt;a class=&#34;link&#34; href=&#34;https://artifacthub.io/packages/search?kind=0&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;popular software packaged as Helm Charts&lt;/a&gt; to run in Kubernetes&lt;/li&gt;
&lt;li&gt;Share your own applications as Helm Charts&lt;/li&gt;
&lt;li&gt;Create reproducible builds of your Kubernetes applications&lt;/li&gt;
&lt;li&gt;Intelligently manage your Kubernetes manifest files&lt;/li&gt;
&lt;li&gt;Manage releases of Helm packages&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;helm-in-a-handbasket&#34;&gt;Helm in a Handbasket
&lt;/h2&gt;&lt;p&gt;Helm is a tool that streamlines installing and managing Kubernetes applications.
Think of it like apt/yum/homebrew for Kubernetes.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Helm renders your templates and communicates with the Kubernetes API&lt;/li&gt;
&lt;li&gt;Helm runs on your laptop, CI/CD, or wherever you want it to run.&lt;/li&gt;
&lt;li&gt;Charts are Helm packages that contain at least two things:
&lt;ul&gt;
&lt;li&gt;A description of the package (&lt;code&gt;Chart.yaml&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;One or more templates, which contain Kubernetes manifest files&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Charts can be stored on disk, or fetched from remote chart repositories
(like Debian or RedHat packages)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;helm-development-and-stable-versions&#34;&gt;Helm Development and Stable Versions
&lt;/h2&gt;&lt;p&gt;Helm v4 is currently under development on the &lt;code&gt;main&lt;/code&gt; branch. This is unstable and the APIs within the Go SDK and at the command line are changing.
Helm v3 (current stable) is maintained on the &lt;code&gt;dev-v3&lt;/code&gt; branch. APIs there follow semantic versioning.&lt;/p&gt;
&lt;h2 id=&#34;install&#34;&gt;Install
&lt;/h2&gt;&lt;p&gt;Binary downloads of the Helm client can be found on &lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/helm/releases/latest&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;the Releases page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Unpack the &lt;code&gt;helm&lt;/code&gt; binary and add it to your PATH and you are good to go!&lt;/p&gt;
&lt;p&gt;If you want to use a package manager:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://brew.sh/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Homebrew&lt;/a&gt; users can use &lt;code&gt;brew install helm&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://chocolatey.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Chocolatey&lt;/a&gt; users can use &lt;code&gt;choco install kubernetes-helm&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://learn.microsoft.com/en-us/windows/package-manager/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Winget&lt;/a&gt; users can use &lt;code&gt;winget install Helm.Helm&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://scoop.sh/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Scoop&lt;/a&gt; users can use &lt;code&gt;scoop install helm&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://snapcraft.io/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Snapcraft&lt;/a&gt; users can use &lt;code&gt;snap install helm --classic&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://flox.dev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Flox&lt;/a&gt; users can use &lt;code&gt;flox install kubernetes-helm&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;To rapidly get Helm up and running, start with the &lt;a class=&#34;link&#34; href=&#34;https://helm.sh/docs/intro/quickstart/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Quick Start Guide&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;See the &lt;a class=&#34;link&#34; href=&#34;https://helm.sh/docs/intro/install/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;installation guide&lt;/a&gt; for more options,
including installing pre-releases.&lt;/p&gt;
&lt;h2 id=&#34;docs&#34;&gt;Docs
&lt;/h2&gt;&lt;p&gt;Get started with the &lt;a class=&#34;link&#34; href=&#34;https://helm.sh/docs/intro/quickstart/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Quick Start guide&lt;/a&gt; or plunge into the &lt;a class=&#34;link&#34; href=&#34;https://helm.sh/docs&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;complete documentation&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;roadmap&#34;&gt;Roadmap
&lt;/h2&gt;&lt;p&gt;The &lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/helm/milestones&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Helm roadmap uses GitHub milestones&lt;/a&gt; to track the progress of the project.&lt;/p&gt;
&lt;p&gt;The development of Helm v4 is currently happening on the &lt;code&gt;main&lt;/code&gt; branch while the development of Helm v3, the stable branch, is happening on the &lt;code&gt;dev-v3&lt;/code&gt; branch. Changes should be made to the &lt;code&gt;main&lt;/code&gt; branch prior to being added to the &lt;code&gt;dev-v3&lt;/code&gt; branch so that all changes are carried along to Helm v4.&lt;/p&gt;
&lt;h2 id=&#34;community-discussion-contribution-and-support&#34;&gt;Community, discussion, contribution, and support
&lt;/h2&gt;&lt;p&gt;You can reach the Helm community and developers via the following channels:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://kubernetes.slack.com&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Kubernetes Slack&lt;/a&gt;:
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://kubernetes.slack.com/messages/helm-users&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#helm-users&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://kubernetes.slack.com/messages/helm-dev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#helm-dev&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://kubernetes.slack.com/messages/charts&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#charts&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Mailing List:
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://lists.cncf.io/g/cncf-helm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Helm Mailing List&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Developer Call: Thursdays at 9:30-10:00 Pacific (&lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/community/blob/master/communication.md#meetings&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;meeting details&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;contribution&#34;&gt;Contribution
&lt;/h3&gt;&lt;p&gt;If you&amp;rsquo;re interested in contributing, please refer to the &lt;a class=&#34;link&#34; href=&#34;CONTRIBUTING.md&#34; &gt;Contributing Guide&lt;/a&gt; &lt;strong&gt;before submitting a pull request&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&#34;code-of-conduct&#34;&gt;Code of conduct
&lt;/h3&gt;&lt;p&gt;Participation in the Helm community is governed by the &lt;a class=&#34;link&#34; href=&#34;code-of-conduct.md&#34; &gt;Code of Conduct&lt;/a&gt;.&lt;/p&gt;
</description>
        </item>
        <item>
        <title>mui-x</title>
        <link>https://producthunt.programnotes.cn/en/p/mui-x/</link>
        <pubDate>Mon, 02 Jun 2025 15:32:29 +0800</pubDate>
        
        <guid>https://producthunt.programnotes.cn/en/p/mui-x/</guid>
        <description>&lt;img src="https://images.unsplash.com/photo-1635799944379-7c20f383d352?ixid=M3w0NjAwMjJ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NDg4NDk0MTN8&amp;ixlib=rb-4.1.0" alt="Featured image of post mui-x" /&gt;&lt;h1 id=&#34;muimui-x&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mui/mui-x&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mui/mui-x&lt;/a&gt;
&lt;/h1&gt;&lt;!-- markdownlint-disable-next-line --&gt;
&lt;p align=&#34;center&#34;&gt;
  &lt;a href=&#34;https://mui.com/x/&#34; rel=&#34;noopener&#34; target=&#34;_blank&#34;&gt;&lt;img width=&#34;150&#34; height=&#34;133&#34; src=&#34;https://mui.com/static/logo.svg&#34; alt=&#34;MUI X logo&#34;&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;h1 align=&#34;center&#34;&gt;MUI X&lt;/h1&gt;
&lt;div align=&#34;center&#34;&gt;
&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mui/mui-x/blob/HEAD/LICENSE&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/badge/license-MIT-blue.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;License&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-data-grid&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/npm/v/@mui/x-data-grid/latest.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;npm latest package&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-data-grid&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/npm/dm/@mui/x-data-grid.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;npm downloads&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://github.com/mui/mui-x/commits/HEAD/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/github/checks-status/mui/mui-x/HEAD&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;GitHub branch status&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://codecov.io/gh/mui/mui-x/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/codecov/c/github/mui/mui-x.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Coverage status&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://x.com/MUI_X_&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/twitter/follow/MUI_X_.svg?label=follow&amp;#43;MUI&amp;#43;X&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Follow on X&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://github.com/mui/mui-x/issues/2081&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/badge/renovate-enabled-brightgreen.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Renovate status&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://isitmaintained.com/project/mui/mui-x&#34;  title=&#34;Average time to resolve an issue&#34;
     target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://isitmaintained.com/badge/resolution/mui/mui-x.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Average time to resolve an issue&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://opencollective.com/mui-org&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/opencollective/all/mui-org&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Open Collective backers and sponsors&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://www.bestpractices.dev/projects/6293&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://www.bestpractices.dev/projects/6293/badge&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;OpenSSF Best Practices&#34;
	
	
&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MUI X&lt;/a&gt; is a suite of advanced React UI components for a wide range of complex use cases.
Each component provides best-in-class UX and DX, with sophisticated UX workflows for data-rich applications.
Components include the Data Grid, Date and Time Pickers, Charts, and Tree View.&lt;/p&gt;
&lt;p&gt;MUI X extends the core functionality of &lt;a class=&#34;link&#34; href=&#34;https://github.com/mui/material-ui/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Material UI&lt;/a&gt;, but the advanced components also stand on their own and can be fully customized to meet the needs of any design system.&lt;/p&gt;
&lt;p&gt;MUI X is &lt;strong&gt;open-core&lt;/strong&gt;: &lt;a class=&#34;link&#34; href=&#34;#community-plan&#34; &gt;Community&lt;/a&gt; components are MIT-licensed and free forever, while more advanced features and components require a &lt;a class=&#34;link&#34; href=&#34;#pro-plan&#34; &gt;Pro&lt;/a&gt; or &lt;a class=&#34;link&#34; href=&#34;#premium-plan&#34; &gt;Premium&lt;/a&gt; commercial license.
See &lt;a class=&#34;link&#34; href=&#34;#licensing&#34; &gt;Licensing&lt;/a&gt; for more information.&lt;/p&gt;
&lt;h2 id=&#34;documentation&#34;&gt;Documentation
&lt;/h2&gt;&lt;p&gt;Get started in the &lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/introduction/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MUI X documentation&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/react-data-grid/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Data Grid&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/react-date-pickers/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Date and Time Pickers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/react-charts/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Charts&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/react-tree-view/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Tree View&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;installation&#34;&gt;Installation
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/react-data-grid/quickstart/#installation&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Data Grid installation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/react-date-pickers/quickstart/#installation&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Date and Time Pickers installation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/react-charts/quickstart/#installation&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Charts installation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/react-tree-view/quickstart/#installation&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Tree View installation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;licensing&#34;&gt;Licensing
&lt;/h2&gt;&lt;p&gt;The MUI X team has been building MIT-licensed React components since 2014, starting with Material UI, and we&amp;rsquo;re committed to the continued advancement of our open-source libraries.
Anything we release under an MIT license will remain MIT-licensed forever.
Learn more about &lt;a class=&#34;link&#34; href=&#34;https://mui-org.notion.site/Stewardship-542a2226043d4f4a96dfb429d16cf5bd&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;our stewardship ethos&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We offer commercial licenses to developers who need the most advanced components and features that can&amp;rsquo;t reasonably be maintained by the open-source community alone.
These licenses make it possible for us to support a full-time staff of engineers.&lt;/p&gt;
&lt;p&gt;Rest assured that when we release features commercially, it&amp;rsquo;s only because we believe you won&amp;rsquo;t find a better MIT-licensed alternative anywhere else.&lt;/p&gt;
&lt;p&gt;See the &lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/introduction/licensing/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Licensing page&lt;/a&gt; for complete details.&lt;/p&gt;
&lt;h3 id=&#34;plans&#34;&gt;Plans
&lt;/h3&gt;&lt;h4 id=&#34;community-plan&#34;&gt;Community plan
&lt;/h4&gt;&lt;p&gt;The free Community version of MUI X contains components and features that we believe are maintainable by contributions from the open-source community.
It&amp;rsquo;s published under an &lt;a class=&#34;link&#34; href=&#34;https://www.tldrlegal.com/license/mit-license&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MIT license&lt;/a&gt; and it&amp;rsquo;s &lt;a class=&#34;link&#34; href=&#34;https://mui-org.notion.site/Stewardship-542a2226043d4f4a96dfb429d16cf5bd#20f609acab4441cf9346614119fbbac1&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;free forever&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-data-grid&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-data-grid&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-date-pickers&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-date-pickers&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-charts&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-charts&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-tree-view&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-tree-view&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;pro-plan&#34;&gt;Pro plan
&lt;/h4&gt;&lt;p&gt;MUI X Pro expands on the Community version with more advanced features and functionality.
The Data Grid Pro comes with multi-filtering, multi-sorting, column resizing, and column pinning; you also gain access to the Date and Time Range Picker components, advanced Charts, and drag-and-drop reordering for the Tree View.&lt;/p&gt;
&lt;p&gt;The Pro version is available under a commercial license—visit the &lt;a class=&#34;link&#34; href=&#34;https://mui.com/pricing/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Pricing page&lt;/a&gt; for details.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-data-grid-pro&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-data-grid-pro&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-date-pickers-pro&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-date-pickers-pro&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-charts-pro&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-charts-pro&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-tree-view-pro&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-tree-view-pro&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;premium-plan&#34;&gt;Premium plan
&lt;/h4&gt;&lt;p&gt;MUI X Premium unlocks the most advanced features of the Data Grid, including row grouping and Excel exporting, as well as everything offered in the Pro plan.&lt;/p&gt;
&lt;p&gt;The Premium version is available under a commercial license—visit the &lt;a class=&#34;link&#34; href=&#34;https://mui.com/pricing/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Pricing page&lt;/a&gt; for details.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.npmjs.com/package/@mui/x-data-grid-premium&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;@mui/x-data-grid-premium&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;support&#34;&gt;Support
&lt;/h2&gt;&lt;p&gt;From community guidance to critical business support, we&amp;rsquo;re here to help.
Read the &lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/introduction/support/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Support guide&lt;/a&gt; for details.&lt;/p&gt;
&lt;h2 id=&#34;contributing&#34;&gt;Contributing
&lt;/h2&gt;&lt;p&gt;Read the &lt;a class=&#34;link&#34; href=&#34;https://producthunt.programnotes.cn/CONTRIBUTING.md&#34; &gt;Contributing guide&lt;/a&gt; to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes.&lt;/p&gt;
&lt;p&gt;Contributing to MUI X is about more than just issues and pull requests!
There are many other ways to &lt;a class=&#34;link&#34; href=&#34;https://mui.com/material-ui/getting-started/faq/#mui-is-an-awesome-organization-how-can-i-support-it&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;support MUI X&lt;/a&gt; beyond contributing to the code base.&lt;/p&gt;
&lt;h2 id=&#34;changelog&#34;&gt;Changelog
&lt;/h2&gt;&lt;p&gt;The &lt;a class=&#34;link&#34; href=&#34;https://github.com/mui/mui-x/releases&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;changelog&lt;/a&gt; is regularly updated to reflect what&amp;rsquo;s changed in each new release.&lt;/p&gt;
&lt;h2 id=&#34;roadmap&#34;&gt;Roadmap
&lt;/h2&gt;&lt;p&gt;Future plans and high-priority features and enhancements can be found in the &lt;a class=&#34;link&#34; href=&#34;https://mui.com/x/introduction/roadmap/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;roadmap&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;security&#34;&gt;Security
&lt;/h2&gt;&lt;p&gt;For details on supported versions and contact information for reporting security issues, please refer to the &lt;a class=&#34;link&#34; href=&#34;https://github.com/mui/mui-x/security/policy&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;security policy&lt;/a&gt;.&lt;/p&gt;
</description>
        </item>
        
    </channel>
</rss>
