nim-plotly icon indicating copy to clipboard operation
nim-plotly copied to clipboard

plotly wrapper for nim-lang

Results 23 nim-plotly issues
Sort by recently updated
recently updated
newest added

I use `nim-plotly` very often but I don't have the time/expertise to review great new features like those from @Vindaar or to keep up with changes in Nim that would...

I have a Raspberry Pi which is collecting temperature and humidity data with a cron-job. I wanted to display this data on a nice little website along with other things...

Is this actually related to https://plotly.com/ in any way? I am confused because I only see .nim files.

While compiling a program that uses v0.3.0 I get the following warning: plotly_subplots.nim(363, 24) Warning: See corresponding Defect; IndexError is deprecated [Deprecated]

As discussed in the nim forum (https://forum.nim-lang.org/t/8569), I'm creating this issue to request support for Shared X-Axes. This is described in the plotly docs: https://plotly.com/python/subplots/#subplots-with-shared-xaxes I hope this can be...

Currently you must provide both the x and y arguments to most of the plotly sugar plotting functions. Sometimes you just want to plat a sequence, and you don't really...

I tried to get NimData to work on latest devel again, but I'm running into a weird problem coming from its `plotly` dependence. On travis I'm getting the [error](https://travis-ci.org/github/bluenote10/NimData/jobs/709732756#L1300): ```...

showlegend doesn't seem to get set in the output. ``` import plotly import random import json import strutils proc doPlot*(): string = let d1 = Trace[int](`type`: PlotType.Histogram, opacity: 0.8, name:"values...

Hello, at the moment ``Trace`` contains generic with ``Trace*[T: SomeNumber]`` But it is possible that X contains not simple floats (for example), but timestamp. I am not sure: is it...

currently they are restricted to one type of SomeNumber. I hacked together a version that adds a second generic type to Trace, not restricted to SomeNumber, and use that for...

help wanted