<?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[Kurve mit TChart darstellen]]></title><description><![CDATA[<p>hallo,</p>
<p>wie kann ich eine Kurve in einem TChart darstellen? Ich wollte &quot;Series1-&gt;XValues&quot; und Series-&gt;YValues&quot; jeweils ein Array übergeben. Aber das geht nicht, weil diese vom Typ TChartValueList sein müssen. Leider finde ich in der Hilfe nichts über TChart bzw. TChartValueList. Kann mir da bitte jemand weiterhelfen, wie ich z.b. so nur eine einfache Gerade darstellen kann?</p>
<p>Danke und Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/173941/kurve-mit-tchart-darstellen</link><generator>RSS for Node</generator><lastBuildDate>Fri, 14 Aug 2026 15:52:00 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/173941.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 21 Feb 2007 12:19:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Kurve mit TChart darstellen on Wed, 21 Feb 2007 12:19:09 GMT]]></title><description><![CDATA[<p>hallo,</p>
<p>wie kann ich eine Kurve in einem TChart darstellen? Ich wollte &quot;Series1-&gt;XValues&quot; und Series-&gt;YValues&quot; jeweils ein Array übergeben. Aber das geht nicht, weil diese vom Typ TChartValueList sein müssen. Leider finde ich in der Hilfe nichts über TChart bzw. TChartValueList. Kann mir da bitte jemand weiterhelfen, wie ich z.b. so nur eine einfache Gerade darstellen kann?</p>
<p>Danke und Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1232552</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1232552</guid><dc:creator><![CDATA[lilly]]></dc:creator><pubDate>Wed, 21 Feb 2007 12:19:09 GMT</pubDate></item><item><title><![CDATA[Reply to Kurve mit TChart darstellen on Wed, 21 Feb 2007 14:10:10 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Du kannst statt dessen TChartSeries::AddXY() nehmen. Wenn die Hilfe nicht im BCB intergriert ist kannst du auch so mal im Builder-Helpverzeichnis nach TeeChart.hlp (oder so ähnlich) schauen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1232634</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1232634</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Wed, 21 Feb 2007 14:10:10 GMT</pubDate></item><item><title><![CDATA[Reply to Kurve mit TChart darstellen on Wed, 21 Feb 2007 14:27:01 GMT]]></title><description><![CDATA[<p>Für die Y-Werte ist ein Array kein Problem, aber die X-Achse ist in gleiche Schritte aufgeteilt:</p>
<pre><code class="language-cpp">const max=3;
double test[max];
test[0]= 10;
test[1]= 22;
test[2]= 64;
Series1-&gt;AddArray(test,5);      // 5 ist die X-Achse
Series1-&gt;Repaint();
</code></pre>
<p>Möglicherweise hilft der das ja, ansonsten nur AddXY einzel.</p>
<p>Gruss myerscola</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1232643</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1232643</guid><dc:creator><![CDATA[myerscola]]></dc:creator><pubDate>Wed, 21 Feb 2007 14:27:01 GMT</pubDate></item><item><title><![CDATA[Reply to Kurve mit TChart darstellen on Wed, 21 Feb 2007 17:55:02 GMT]]></title><description><![CDATA[<p>hallo,</p>
<p>danke für eure antworten!...das hat mir schon sehr geholfen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1232798</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1232798</guid><dc:creator><![CDATA[lilly]]></dc:creator><pubDate>Wed, 21 Feb 2007 17:55:02 GMT</pubDate></item></channel></rss>