Is there a way to have mixed charts with
charts together.

Is there a way to have column and stacked bar chart in the same graph with another line chart?
Sorry, that's not achievable currently.
Grouped and Stacked column charts have been suggested before in this thread and may come in the future.
Related to #196, #26
The way that another graphing library handles this is rather elegant.
For each series, you can pass in a stack id.
<Bar dataKey="female" stackId="a" fill="#8884d8" />
<Bar dataKey="male" stackId="a" fill="#82ca9d" />
<Bar dataKey="uv" fill="#ffc658"/>
+1 to this feature!
another library has this functionality, here's an example:
https://js.devexpress.com/Demos/WidgetsGallery/Demo/Charts/SideBySideStackedBar/React/Light/
Most helpful comment
Sorry, that's not achievable currently.
Grouped and Stacked column charts have been suggested before in this thread and may come in the future.
Related to #196, #26