{"id":23666579,"url":"https://github.com/redsift/d3-rs-polars","last_synced_at":"2025-07-03T09:06:10.641Z","repository":{"id":57138796,"uuid":"62073982","full_name":"redsift/d3-rs-polars","owner":"redsift","description":null,"archived":false,"fork":false,"pushed_at":"2017-01-09T17:51:10.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-06-23T06:49:17.778Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/redsift.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-06-27T17:16:21.000Z","updated_at":"2016-06-27T17:16:25.000Z","dependencies_parsed_at":"2022-08-23T02:00:52.908Z","dependency_job_id":null,"html_url":"https://github.com/redsift/d3-rs-polars","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/redsift/d3-rs-polars","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redsift%2Fd3-rs-polars","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redsift%2Fd3-rs-polars/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redsift%2Fd3-rs-polars/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redsift%2Fd3-rs-polars/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/redsift","download_url":"https://codeload.github.com/redsift/d3-rs-polars/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redsift%2Fd3-rs-polars/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263296442,"owners_count":23444489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-29T07:33:10.511Z","updated_at":"2025-07-03T09:06:10.587Z","avatar_url":"https://github.com/redsift.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# d3-rs-polars\n\n`d3-rs-polars` generate a range of pie charts.\n\n## Builds\n\n[![Circle CI](https://circleci.com/gh/Redsift/d3-rs-polars.svg?style=svg)](https://circleci.com/gh/Redsift/d3-rs-polars)\n\n## Example\n\n[View @redsift/d3-rs-polars on Codepen](http:...)\n\n### Line chart\n\n![Sample bars with a bottom orientation](https://bricks.redsift.io/reusable/d3-rs-polars.svg?_datum=[1,200,3100,1000]\u0026orientation=bottom)\n\n### Area chart\n\n![Sample bars with a left orientation](https://bricks.redsift.io/reusable/d3-rs-polars.svg?_datum=[1,200,3100,1000]\u0026orientation=left\u0026fill=global)\n\n### Combination\n\n![Sample bars with a top orientation and time label](https://bricks.redsift.io/reusable/d3-rs-polars.svg?_datum=[{%22v%22:1,%22l%22:1466424812000},{%22v%22:2,%22l%22:1466511212000},{%22v%22:3,%22l%22:1466597612000},{%22v%22:300.5,%22l%22:1466684012000},{%22v%22:4000,%22l%22:1466770412000},{%22v%22:40000,%22l%22:1466856812000}]\u0026orientation=top\u0026labelTime=%25a%20%25d)\n\n## Usage\n\n### Browser\n\t\n\t\u003cscript src=\"//static.redsift.io/reusable/d3-rs-polars/latest/d3-rs-polars.umd-es2015.min.js\"\u003e\u003c/script\u003e\n\t\u003cscript\u003e\n\t\tvar chart = d3_rs_lines.html();\n\t\td3.select('body').datum([ 1, 2, 3, 10, 100 ]).call(chart);\n\t\u003c/script\u003e\n\n### ES6\n\n\timport { chart } from \"@redsift/d3-rs-polars\";\n\tlet eml = chart.html();\n\t...\n\t\n### Require\n\n\tvar chart = require(\"@redsift/d3-rs-polars\");\n\tvar eml = chart.html();\n\t...\n\n### Datum\n\n- Simplest form, array of unit numbers: `[0.1, 1, 0.5 ,0.3...]`\n\n### Parameters\n\nProperty|Description|Transition|Preview\n----|-----------|----------|-------\n`classed`|*String* SVG custom class|N\n`width`, `height`, `size`, `scale`|*Integer* SVG container sizes. Typically, use `size` to scale the chart|Y\n`margin`|*Object, Number* Margin affecting all chart elements\n`inset`|*Number* Margin affecting primary chart element\n`style`|*String* Custom CSS to inject into chart|N\n`background`|*Color*\n`theme`|*light|dark*\n`language`|*String*\n`outerRadius`|*Integer* Radius of the largest arc. Default is `null` and is set automatically as a funciton of the size|\n`padding`|*Number* Pixels between polar arcs|\n`thickness`|*Number* Pixel thickness of the arc|\n`cornerRadius`|*Number* Pixel rounding of the arc ends|\n`reverse`|*Boolean* Reverse the arc fill computation|\n`padAngle`|*Number* Radians to pad between the data values 0 and 1. By default, an arc between 0 and 1 will form a complete circle|\n`startAngle`|*Number* Radian position of 0|\n`displayValue`|\n`displayFormatValue`|\n`fill`|\n`displayTip`|\n`legend`|*Array*\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredsift%2Fd3-rs-polars","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredsift%2Fd3-rs-polars","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredsift%2Fd3-rs-polars/lists"}