<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-WeatherChartD3]]></title><description><![CDATA[<h1>Description:</h1>
<p dir="auto">This module displays a chart using any weather provider. It can display temperature, feels like temperature, precipitation, snow and weather icons. It uses the D3.js library.</p>
<p dir="auto">Full list of elements that can be displayed:</p>
<ul>
<li>icons of weather</li>
<li>day/night separation</li>
<li>temperature</li>
<li>min/max temperature</li>
<li>feels like temperature</li>
<li>precipitation</li>
<li>snow</li>
<li>humidity</li>
<li>wind</li>
<li>Only with a specific/modified weather provider:
<ul>
<li>pressure</li>
<li>precipitation probability</li>
<li>pollution</li>
<li>UV</li>
</ul>
</li>
</ul>
<p dir="auto">All curves can be styled using CSS</p>
<h1>Screenshots:</h1>
<p dir="auto"><img src="/assets/uploads/files/1675724130999-sample.png" alt="sample.png" class=" img-fluid img-markdown" /><br />
<img src="/assets/uploads/files/1675724255275-sample-colors.png" alt="sample-colors.png" class=" img-fluid img-markdown" /></p>
<h1>Download:</h1>
<p dir="auto"><a href="https://github.com/seb-ma/MMM-WeatherChartD3" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/seb-ma/MMM-WeatherChartD3</a></p>
]]></description><link>https://forum.magicmirror.builders/topic/17604/mmm-weatherchartd3</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Apr 2026 09:36:27 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/17604.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 06 Feb 2023 22:59:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-WeatherChartD3 on Sun, 24 Sep 2023 15:19:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/majorc" aria-label="Profile: MajorC">@<bdi>MajorC</bdi></a> looks like this is a javascript change</p>
<p dir="auto"><a href="https://github.com/MichMich/MagicMirror/issues/2863" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MichMich/MagicMirror/issues/2863</a></p>
]]></description><link>https://forum.magicmirror.builders/post/111079</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/111079</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 24 Sep 2023 15:19:49 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-WeatherChartD3 on Sun, 24 Sep 2023 15:12:27 GMT]]></title><description><![CDATA[<p dir="auto">Log says, that:</p>
<pre><code>units: config.units,
locale: config.locale,
</code></pre>
<p dir="auto">is not right?!?</p>
]]></description><link>https://forum.magicmirror.builders/post/111078</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/111078</guid><dc:creator><![CDATA[MajorC]]></dc:creator><pubDate>Sun, 24 Sep 2023 15:12:27 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-WeatherChartD3 on Sun, 24 Sep 2023 13:54:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/majorc" aria-label="Profile: MajorC">@<bdi>MajorC</bdi></a> see <a href="https://forum.magicmirror.builders/topic/15778/fix-for-black-screen-in-2-16-and-later/">https://forum.magicmirror.builders/topic/15778/fix-for-black-screen-in-2-16-and-later/</a></p>
]]></description><link>https://forum.magicmirror.builders/post/111076</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/111076</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 24 Sep 2023 13:54:58 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-WeatherChartD3 on Sun, 24 Sep 2023 13:43:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/matuki" aria-label="Profile: Matuki">@<bdi>Matuki</bdi></a></p>
<p dir="auto">Hi I tried to use your module.</p>
<p dir="auto">Followed your instructions to install from github. Works well.</p>
<p dir="auto">Than I copy past the config, add position, my apiKey, lat and lon.</p>
<p dir="auto">But I still have now a black MM.</p>
<p dir="auto">Any idea where to start looking. The MM is working fine if I delete the MMM-WeatherChartD3 lines in the config.</p>
<pre><code>{
			module: "MMM-WeatherChartD3",
			position: "bottom_right",
			config: {
				updateInterval: 10 * 60 * 1000,
				initialLoadDelay: 5000,
				weatherProvider: "openweathermap",
				weatherEndpoint: "/onecall",
				apiKey: "3e349d84feb10771d8c4bf34cde00000", //i changed to a dummy key
				type: "full", // Possible values: hourly, forecast (=daily) or specific value `full` which is a join of data from hourly+daily
				lang: config.language,
				lat: 52.554000,
				lon: 13.463000,
				units: config.units,
				locale: config.locale,
				d3jsVersion: "7", // can either be in format "7.4" or even "7.4.4"
				title: "Weather Forecast",
				height: 300,
				width: 500,
				iconSize: undefined, // in px or undefined to define automatically at first call
				iconURLBase: "https://raw.githubusercontent.com/erikflowers/weather-icons/master/svg/",
				hoursRatio: 0, // Ratio of fetched hours in graph (useful for openweathermap onecall that gives 48h with 1h precision) - 0 or undefined to ignore
				showIcons: true,
				showNights: true,
				showTemperature: true,
				showMinMaxTemperature: false,
				showFeelsLikeTemp: true,
				showPrecipitationAmount: true,
				showPrecipitationProbability: true, // Only used when showPrecipitationAmount == true
				showSnow: true, // if false: snow is included in precipitations
				showPressure: true,
				showHumidity: true,
				showWind: true,
				showAQI: true,
				showUVI: true,
			}
		},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/111075</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/111075</guid><dc:creator><![CDATA[MajorC]]></dc:creator><pubDate>Sun, 24 Sep 2023 13:43:38 GMT</pubDate></item></channel></rss>