Josh Keegan
Josh Keegan
Can you define a fallback decoder that prints out the character set string and then post it here? Something like: ``` csharp EncodingFinder.FallbackDecoder = delegate(string characterSet) { Console.WriteLine(characterSet); return null;...
I'd put it in the same place that you've put the custom mapping.
If you take a look at the charset, it's "windows-1252http-equivContent-Type", which should just be "windows-1252". Add another custom mapping, like: ``` vb OpenPop.Mime.Decode.EncodingFinder.AddMapping("windows-1252http-equivContent-Type", System.Text.Encoding.GetEncoding(1252)) ```
It would be possible to have this case handled by OpenPop by automatically stripping non-numerical characters from the string if it starts "windows-" or "cp-". I don't have access to...
:+1: Would be a great feature :) Did anyone here implement anything just for there own heatmap? I need to do this for days of the week & don't want...
I'm having the same problem. Agree with @jamesburke-examtime that it looks like it's the legend title text that is wrong, with less than actually being less than or equal to...
@wa0x6e Sorry, I hadn't seen this when opening #201. Having now read this, couldn't it be fixed with this CSS: ``` .cal-heatmap-container svg { overflow: visible; } ``` That shouldn't...
For me, the problem isn't just where the overflow is being hidden by .cal-heatmap-container. If it was just caused by the container, then it wouldn't hide the overflow between two...