charts 相关问题

图表是数据的图形表示,通常采用图形或图表的格式。使用此标记可以了解有关使用图表库API的问题。

如何在react-pdf/renderer中使用Chart.js或recharts

我想使用react-pdf创建pdf,但对于图表/图表我必须使用Chart.js或recharts,但我无法直接实现react-pdf,这是我从qs中看到的另一个选项: 如何添加

回答 2 投票 0

未捕获的类型错误:项目未定义chart.js

我正在尝试使用vue和chart.js制作一个页面: 从 'vue' 导入 { ref, onMounted }; 从“vue-slider-component”导入 VueSlider; 导入 'vue-slider-component/theme/defa...</desc> <question vote="0"> <p>我正在尝试使用vue和chart.js制作一个页面:</p> <pre><code> &lt;script setup&gt; import { ref, onMounted } from &#39;vue&#39;; import VueSlider from &#39;vue-slider-component&#39;; import &#39;vue-slider-component/theme/default.css&#39;; import Chart from &#39;chart.js/auto&#39;; const data1 = { 2010: [50, 30, 20], 2011: [45, 35, 20] // &lt;...&gt; }; const minYear = 2010; const maxYear = 2024; const canvasRefs = ref([]); const charts = ref([]); const isPlaying = ref(false); const currentYear = ref(minYear); let animationFrame = null; function createChart(ctx, initialData) { return new Chart(ctx, { type: &#39;doughnut&#39;, data: { labels: [&#39;Male&#39;, &#39;Female&#39;, &#39;NB&#39;], datasets: [{ data: initialData, backgroundColor: [&#39;#36A2EB&#39;, &#39;#FF6384&#39;, &#39;#FFCE56&#39;], }] }, options: { responsive: true, maintainAspectRatio: false, animation: { animateRotate: true, animateScale: true }, plugins: { tooltip: { enabled: true } } } }); } function updateCharts() { charts.value.forEach((chartData, index) =&gt; { const chart = chartData.chart; const data = chartData.data[currentYear.value]; chart.data.datasets[0].data = data; chart.update(); }); } function playSlider() { if (isPlaying.value) { cancelAnimationFrame(animationFrame); document.getElementById(&#39;playButton&#39;).textContent = &#39;Play&#39;; } else { const duration = 15000; const steps = (maxYear - minYear) * 100; const intervalTime = duration / steps; let currentStep = currentYear.value; const animate = () =&gt; { if (currentStep &gt;= maxYear) { cancelAnimationFrame(animationFrame); isPlaying.value = false; document.getElementById(&#39;playButton&#39;).textContent = &#39;Play&#39;; } else { currentStep += 0.01; currentYear.value = Math.round(currentStep); updateCharts(); animationFrame = requestAnimationFrame(animate); } }; animationFrame = requestAnimationFrame(animate); document.getElementById(&#39;playButton&#39;).textContent = &#39;Pause&#39;; } isPlaying.value = !isPlaying.value; } function addChart(data) { const canvas = document.createElement(&#39;canvas&#39;); const ctx = canvas.getContext(&#39;2d&#39;); const newChart = createChart(ctx, data[currentYear.value]); const chartWrapper = document.createElement(&#39;div&#39;); const canvasContainer = document.createElement(&#39;div&#39;); chartWrapper.classList.add(&#39;chart-wrapper&#39;); canvasContainer.classList.add(&#39;canvas-container&#39;); canvasContainer.appendChild(canvas); chartWrapper.appendChild(canvasContainer); document.getElementById(&#39;chartContainers&#39;).appendChild(chartWrapper); charts.value.push({ chart: newChart, data: data }); updateCharts(); } function handleSliderChange(value) { if (value &gt;= minYear &amp;&amp; value &lt;= maxYear &amp;&amp; value != currentYear.value) { currentYear.value = value; updateCharts(); } } onMounted(() =&gt; { addChart(data1); }); &lt;/script&gt; &lt;template&gt; &lt;div id=&#34;main&#34;&gt; &lt;div id=&#34;chartContainers&#34; class=&#34;chart-container&#34;&gt; &lt;div v-for=&#34;(chartData, index) in chartDataList&#34; :key=&#34;index&#34; class=&#34;chart-wrapper&#34;&gt; &lt;div class=&#34;canvas-container&#34;&gt; &lt;canvas :ref=&#34;el =&gt; canvasRefs[index] = el&#34; :id=&#34;&#39;chartCanvas-&#39; + index&#34;&gt;&lt;/canvas&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;vue-slider :min=&#34;minYear&#34; :max=&#34;maxYear&#34; :interval=&#34;1&#34; :value=&#34;currentYear&#34; @change=&#34;handleSliderChange&#34;/&gt; &lt;p id=&#34;currentYear&#34;&gt;Year: {{ currentYear }}&lt;/p&gt; &lt;button id=&#34;playButton&#34; @click=&#34;playSlider&#34;&gt;{{ isPlaying ? &#39;Pause&#39; : &#39;Play&#39; }}&lt;/button&gt; &lt;/div&gt; &lt;/template&gt; &lt;style&gt; // &lt;...&gt; &lt;/style&gt; </code></pre> <p>似乎每当调用 <pre><code>chart.update()</code></pre> 时,我都会收到以下错误:</p> <pre><code>Uncaught TypeError: item is undefined configure core.layouts.js:332 beforeUpdate plugin.subtitle.js:28 callback helpers.core.ts:109 _notify core.plugins.js:60 notify core.plugins.js:42 notifyPlugins core.controller.js:1153 update core.controller.js:508 updateCharts DoughnutChart.vue:66 updateCharts DoughnutChart.vue:62 handleSliderChange DoughnutChart.vue:119 callWithErrorHandling runtime-core.esm-bundler.js:195 callWithAsyncErrorHandling runtime-core.esm-bundler.js:202 emit runtime-core.esm-bundler.js:725 syncValueByPos vue-slider.vue:504 dragMove vue-slider.vue:548 </code></pre> <p>我有点不知所措。图表和滑块最初都可以工作,移动滑块只是无法更新图表。我还没有发现类似的问题。我正在使用 Vite 和 Node v20.13.1。</p> </question> <answer tick="false" vote="0"> <p>如果您每次在 Vue 应用程序中的 Chart.js 实例上调用 update() 时都会遇到错误“items is undefined”,则问题的原因可能是由于 Vue 的代理干扰了 Chart.js 对象。 Vue 使对象具有反应性,这可能会干扰 Chart.js 内部管理其选项和配置的方式。</p> <p><strong>解决方案</strong></p> <p>要解决此问题,您可以使用 <pre><code>Object.seal</code></pre> 来密封 Chart.js 对象,然后将其分配给 Vue 中的响应式属性。这可以防止 Vue 向对象添加反应性,从而允许 Chart.js 正确处理它。</p> <pre><code>chart.value = Object.seal(new Chart(...)); </code></pre> <p>或者,您可以直接定义 Chart.js 实例,而不将其分配给响应式属性。</p> <pre><code>let chart = new Chart(...); </code></pre> <p>您也可以参考这个<a href="https://stackoverflow.com/questions/68560025/unexpected-error-when-attempting-to-update-chart-data-in-chart-js-in-a-vue-app">问题</a>。</p> </answer> </body></html>

回答 0 投票 0

LightningChartJS with React:文本框在右下角显示不正确

我正在将 LightningChartJS 与 ReactJS 项目集成,并面临 TextBox 的位置未按预期对齐的问题。尽管将原点设置为 UIOrigins.RightBottom 并使用...

回答 1 投票 0

删除chart.js中的x轴标签/文本

如何隐藏 Chart.js 中显示的 x 轴标签/文本? 设置scaleShowLabels:false 仅删除 y 轴标签。 变量选项= { 缩放字体颜色:“#fa0”...</desc> <question vote="91"> <p>如何隐藏 Chart.js 中显示的 x 轴标签/文本?</p> <p>设置 <pre><code>scaleShowLabels:false</code></pre> 仅删除 y 轴标签。</p> <pre><code>&lt;script&gt; var options = { scaleFontColor: &#34;#fa0&#34;, datasetStrokeWidth: 1, scaleShowLabels : false, animation : false, bezierCurve : true, scaleStartValue: 0, }; var lineChartData = { labels : [&#34;1&#34;,&#34;2&#34;,&#34;3&#34;,&#34;4&#34;,&#34;5&#34;,&#34;6&#34;,&#34;7&#34;], datasets : [ { fillColor : &#34;rgba(151,187,205,0.5)&#34;, strokeColor : &#34;rgba(151,187,205,1)&#34;, pointColor : &#34;rgba(151,187,205,1)&#34;, pointStrokeColor : &#34;#fff&#34;, data : [1,3,0,0,6,2,10] } ] } var myLine = new Chart(document.getElementById(&#34;canvas&#34;).getContext(&#34;2d&#34;)).Line(lineChartData,options); &lt;/script&gt; </code></pre> </question> <answer tick="false" vote="175"> <h1>chart.js 版本 3 </h1> <pre><code>var chart = new Chart(ctx, { ... options:{ scales:{ x: { display: false ////this will remove all the x-axis grid lines } } } }); var chart = new Chart(ctx, { ... options: { scales: { x: { ticks: { display: false //this will remove only the label } } } } }); </code></pre> <h1>chart.js 版本 2.1 </h1> <pre><code>var chart = new Chart(ctx, { ... options:{ scales:{ xAxes: [{ display: false //this will remove all the x-axis grid lines }] } } }); var chart = new Chart(ctx, { ... options: { scales: { xAxes: [{ ticks: { display: false //this will remove only the label } }] } } }); </code></pre> <p><a href="http://www.chartjs.org/docs/#line-chart-chart-options" rel="nofollow noreferrer">参考:chart.js 文档</a></p> <p><strong>旧答案(当前版本为1.0 beta时写的)仅供参考:</strong></p> <p>为了避免在 <pre><code>chart.js</code></pre> 中显示标签,您必须设置 <pre><code>scaleShowLabels : false</code></pre> 并且避免传递 <pre><code>labels</code></pre>:</p> <pre><code>&lt;script&gt; var options = { ... scaleShowLabels : false }; var lineChartData = { //COMMENT THIS LINE TO AVOID DISPLAYING THE LABELS //labels : [&#34;1&#34;,&#34;2&#34;,&#34;3&#34;,&#34;4&#34;,&#34;5&#34;,&#34;6&#34;,&#34;7&#34;], ... } ... &lt;/script&gt; </code></pre> </answer> <answer tick="false" vote="48"> <h1>这是针对chart.js ^3.0.0</h1> <h3>删除 x 轴标签和网格图表线</h3> <pre><code>var chart = new Chart(ctx, { ... options:{ scales:{ x: { display: false } } } }); </code></pre> <h3>仅删除 x 轴标签</h3> <pre><code>var chart = new Chart(ctx, { ... options: { scales: { x: { ticks: { display: false } } } } }); </code></pre> </answer> <answer tick="false" vote="18"> <p>(此问题与 <a href="https://stackoverflow.com/questions/28673804/">In Chart.js 重复,如果从移动设备访问,是否可以隐藏条形图的 x 轴标签/文本?</a>) 他们添加了这个选项,2.1.4(也许更早一点)有它</p> <pre><code>var myLineChart = new Chart(ctx, { type: &#39;line&#39;, data: data, options: { scales: { xAxes: [{ ticks: { display: false } }] } } } </code></pre> </answer> <answer tick="false" vote="11"> <p></p><div data-hide="false" data-lang="js"> <div> <pre><code>var lineChartData = { labels: [&#34;&#34;, &#34;&#34;, &#34;&#34;, &#34;&#34;, &#34;&#34;, &#34;&#34;, &#34;&#34;] // To hide horizontal labels ,datasets : [ { label: &#34;My First dataset&#34;, fillColor : &#34;rgba(220,220,220,0.2)&#34;, strokeColor : &#34;rgba(220,220,220,1)&#34;, pointColor : &#34;rgba(220,220,220,1)&#34;, pointStrokeColor : &#34;#fff&#34;, pointHighlightFill : &#34;#fff&#34;, pointHighlightStroke : &#34;rgba(220,220,220,1)&#34;, data: [28, 48, 40, 19, 86, 27, 90] } ] } window.onload = function(){ var options = { scaleShowLabels : false // to hide vertical lables }; var ctx = document.getElementById(&#34;canvas1&#34;).getContext(&#34;2d&#34;); window.myLine = new Chart(ctx).Line(lineChartData, options); }</code></pre> </div> </div> <p></p> </answer> <answer tick="false" vote="8"> <p>现在面临在 Chartjs 中删除标签的问题。看起来文档有所改进。 <a href="http://www.chartjs.org/docs/#getting-started-global-chart-configuration" rel="noreferrer">http://www.chartjs.org/docs/#getting-started-global-chart-configuration</a></p> <pre><code>Chart.defaults.global.legend.display = false; </code></pre> <p>此全局设置可防止所有图表中显示图例。因为这对我来说已经足够了,所以我使用了它。我不确定如何避免单个图表的图例。</p> </answer> <answer tick="false" vote="8"> <p>对于那些这不起作用的人,以下是我如何隐藏 X 轴上的标签 - </p> <pre><code>options: { maintainAspectRatio: false, layout: { padding: { left: 1, right: 2, top: 2, bottom: 0, }, }, scales: { xAxes: [ { time: { unit: &#39;Areas&#39;, }, gridLines: { display: false, drawBorder: false, }, ticks: { maxTicksLimit: 7, display: false, //this removed the labels on the x-axis }, &#39;dataset.maxBarThickness&#39;: 5, }, ], </code></pre> </answer> <answer tick="false" vote="6"> <p>受christutty的回答启发,这里有一个修改源码但尚未经过彻底测试的解决方案。不过我还没有遇到任何问题。</p> <p>在默认部分中,在第 71 行周围添加此行:</p> <pre><code>// Boolean - Omit x-axis labels omitXLabels: true, </code></pre> <p>然后在第 2215 行左右,将其添加到 buildScale 方法中:</p> <pre><code>//if omitting x labels, replace labels with empty strings if(Chart.defaults.global.omitXLabels){ var newLabels=[]; for(var i=0;i&lt;labels.length;i++){ newLabels.push(&#39;&#39;); } labels=newLabels; } </code></pre> <p>这也保留了工具提示。</p> </answer> <answer tick="false" vote="3"> <p>最简单的解决方案是:</p> <p><pre><code>scaleFontSize: 0</code></pre></p> <p>参见 <a href="http://www.chartjs.org/docs/#getting-started-global-chart-configuration" rel="nofollow noreferrer">chart.js 文档</a></p> <p><a href="https://stackoverflow.com/questions/28673804">类似的问题</a></p> </answer> <answer tick="false" vote="3"> <p>如果您希望保留工具提示的标签,但不显示在栏下方,则以下技巧可能有用。 我进行此更改是为了在私有 Intranet 应用程序上使用,并且尚未测试它的效率或副作用,但它满足了我的需要。</p> <p>在 Chart.js 中的第 71 行左右添加一个属性来隐藏条形标签:</p> <pre><code>// Boolean - Whether to show x-axis labels barShowLabels: true, </code></pre> <p>在第 1500 行左右,使用该属性来抑制更改 this.endPoint (似乎需要计算代码的其他部分,因为如果我禁用除此行以外的任何内容,图表的块会消失或渲染不正确)。</p> <pre><code>if (this.xLabelRotation &gt; 0) { if (this.ctx.barShowLabels) { this.endPoint -= Math.sin(toRadians(this.xLabelRotation)) * originalLabelWidth + 3; } else { // don&#39;t change this.endPoint } } </code></pre> <p>大约在第 1644 行,使用该属性来抑制标签渲染:</p> <pre><code>if (ctx.barShowLabels) { ctx.fillText(label, 0, 0); } </code></pre> <p>我想对 Chart.js 源代码进行此更改,但对 git 不太熟悉,也没有时间严格测试,所以宁愿避免破坏任何东西。</p> </answer> <answer tick="false" vote="1"> <p>更新:chartjs ^4.2.0 + React-chartjs-2 ^5.2.0</p> <p>轴被移除。</p> <pre><code>const options = { legend: { display: false, }, scales: { x: { display: false, }, y: { display: false, }, }, </code></pre> </answer> </body></html>

回答 0 投票 0

在Excel中以水平条显示数据集并带有偏移量?

我有下表 开始 结束 持续时间(年) 鲍勃·拉金 1924年9月1日 1932年10月1日 8 艾德·詹金斯 1925 年 1 月 1 日

回答 2 投票 0

如何在 React 中使 Chart.js 图表具有固定纵横比的响应能力?

我正在开发一个 React 项目,我需要在网格布局的父组件内显示 Chart.js 图表。图表应根据其父容器调整大小,同时保持...

回答 1 投票 0

openpyxl 折线图:如何为线条分配随机标记?

我设法创建了一个几乎符合我要求的简单折线图: c1 = opxl.chart.LineChart() c1.样式 = 2 数据 = opxl.chart.Reference(wsh, min_col=2, min_row=24, max_col=maxc, max_row=29) 标签...

回答 1 投票 0

需要将特定颜色强制为 ggplot geom_col 图表中字段的特定值

我正在使用来自边境口岸运输统计局的数据,并尝试通过复制我在 Tableau 中构建的仪表板(在此处发布)来熟练使用 R。 我想用...

回答 1 投票 0

Google 表格中两只糖尿病猫的血糖图表

我在尝试创建一个简单的折线图来跟踪我的两只糖尿病猫的血糖时遇到了困难。我想要两行,每只猫一行,按日期/时间跟踪。我有

回答 1 投票 0

如何在 vega-lite 中渲染堆叠条形图和分组(聚集)条形图?

我创建了以下分组条形图,但现在我想将“赚取收入”和“资金收入”数据点合并到一个堆积条形图中。 最终结果应该是 2

回答 1 投票 0

Jaspersoft studio 具有单个查询的多个图表

我的数据库查询获取数据列表,例如: id 密钥 noc 日期 1 abc 4 2016 年 10 月 1 日 2 abc 12 2-10-2016 3 abc ...

回答 3 投票 0

在vba中为图例文本设置颜色代码?

我们在这里找到了一个旧的 Excel 文件,其中包含一个由多年前丢失的 vba 生成的图表。 显然,从这篇文章中摘录的以下内容并不是解决方案。 对于sheet中的每个shp.Sha...

回答 1 投票 0

单击外部按钮时,Apexcharts 将图表下载为图像 (PNG)

我有一个简单的反应顶点图表,我需要下载它的图像。 Apex 工具栏可以做到这一点,但我想使用外部按钮调用相同的行为。这是我的代码。 如何才能做到这一点? ...

回答 2 投票 0

圆环图中的图表JS文本中心

我的甜甜圈图表js中有一个带有文本的圆圈,我如何使文本居中,根据屏幕的不同,位置似乎有所不同。 Chart.pluginService.register({ beforeDraw:函数(图表)...

回答 1 投票 0

Primefaces 14.0.0 中的图表导致 jQuery 出现错误

我从 Primefaces 13 更新到 Primefaces 14.0.0。图表功能已升级为使用 Chart.js,我相应地更新了我的代码。由于它不能开箱即用,所以我复制了示例......

回答 1 投票 0

如何根据值对绘制曲线的不同部分着色

我正在尝试弄清楚如何绘制数据框列,其中线条的颜色根据其值而变化,但我坚持如何获取这些值的引用。 例如,我有这个数据...

回答 1 投票 0

Ngx-Charts - 如何在每个标准化部分的标准化条形图中添加文本

我使用 ngx-charts 创建了标准化水平条形图 这是我的示例代码https://stackblitz.com/edit/swimlane-normalized-horizontal-bar-chart-wunjep?file=app%2Fdata.ts 看起来像...

回答 1 投票 0

我怎样才能让雷达chart.js中的所有图表在悬停时显示数据列表?

我正在尝试制作一个图表,当我将鼠标放在生成的所有区域而不仅仅是节点中时,数据就会显示出来。这个想法是悬停显示整个数据。 这就是...

回答 1 投票 0

在 Visual Studio 中绘制图表时出现问题

注意:我使用的是 .NET 6,Windows 窗体中没有图表。我正在使用 winforms-数据可视化。 我有一个项目,可以分析文本文件中每个字母的频率并创建他的...

回答 1 投票 0

在图表中创建日期条形图时处理无值的日期

有些数据跳过了日期,如下数据所示。 TrainingSession(日期: formatter.date(来自: "2024-05-12 07:37:30 +0000")!, maxRM: 10.0, 总音量: 0.0), 培训课程(日期:针对...

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.